mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-25 10:08:36 +02:00
16 lines
563 B
HTML
16 lines
563 B
HTML
{% extends 'extends/offcanvas.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% translate 'Installments' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div hx-get="{% url 'installment_plan_transactions' installment_plan_id=installment_plan.id %}" hx-trigger="updated from:window" hx-vals='{"disable_selection": true}' hx-target="closest .offcanvas" class="show-loading">
|
|
{% for transaction in transactions %}
|
|
<c-transaction.item
|
|
:transaction="transaction"
|
|
:disable-selection="True"></c-transaction.item>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|