{% extends "musician/base.html" %} {% load i18n l10n %} {% block content %}

{% trans "Billing" %}

{% trans "Billing page description." %}

{% for bill in object_list %} {% endfor %} {# TODO: define proper colspan #} {% include "musician/components/table_paginator.html" %}
{% trans "Number" %} {% trans "Bill date" %} {% trans "Type" %} {% trans "Total" %} {% trans "Download PDF" %}
{{ bill.number }} {{ bill.created_on }} {{ bill.type }} {{ bill.total|floatformat:2|localize }}€
{% endblock %}