{% extends "base.html" %} {% load i18n %} {% load juntagrico.config %} {% block page_title %}

{% trans "Bills" %}

{% endblock %} {% block content %}
{% for bill in bills %} {% endfor %}
{% trans "Number" %} {% trans "Date" %} {% trans "Kind" %} {% trans "Amount" %} {% trans "Paid" %}
{{ bill.pk }} {{ bill.bill_date|date:"SHORT_DATE_FORMAT" }} {{ bill.item_kinds | linebreaks }} {{ bill.amount | floatformat:2 }} {% if bill.paid %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {% if not bill.paid %} {{ amount.paid }} {% endif %} PDF
{% endblock %} {% block scripts %} {% block extrascripts %} {% endblock %} {% endblock %}