{% for invoice in invoices %} {% endfor %}
Invoice Cost Name Created Updated Notes Requests Info
{{ invoice }} ${{ invoice.total_cost }} {{ invoice.user|escape }} {{ invoice.created|date }} {{ invoice.updated|date }} {{ invoice.org_notes|escape }} {% for req in invoice.changerequest_set.all %} {% if not forloop.first %}
{% endif %} {{ req.text|escape}} - {{ req.created|date }}{% endfor %}
{% for reg in invoice.registrations.all %} {% if reg.extra_info %} R{{ reg.id }} {{ reg.name|escape }} - {{ reg.extra_info|escape}} {% if not forloop.last %}
{% endif %} {% endif %} {% endfor %}