This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
fontenay-themes/templates/lingo/combo/item.html

30 lines
902 B
HTML

<div id="content">
<div id="appbar">
<h2>
Facture numéro {{ item.display_id }}
</h2>
<div id="item">
<form action="{% url 'lingo-pay' %}" method="POST">
<h4>Libellé {{ item.subject }}
</h4>
<p>Montant total {{item.total_amount }}€
</p>
{% if item.amount %}
<p>Montant restant à payer: {{ item.amount }}€
</p>
{% endif %}
<p>Emise le {{ item.creation_date|date:"SHORT_DATE_FORMAT" }}</p>
{% if item.payment_date %}
<p>Payée le {{ item.payment_date|date:"SHORT_DATE_FORMAT" }}</p>
{% endif %}
{% if item.amount %}
{% csrf_token %}
<input type="hidden" name="regie" value="{{ regie.pk }}" />
<input type="hidden" name="item" value="{{ item.id }}" />
<button>Payer</button>
{% endif %}
</form>
</div>
</div>
</div>