{% extends 'base.html' %} {% block title %}{{ _('Create Invoices') }} - MetaBrainz Foundation{% endblock %} {% block content %}

{{ _('Create Invoices') }}

logout from QuickBooks

Ready to invoice

{{ section(ready, 1) }}

Uncertain

{{ section(wtf, 0) }}

Current

{{ section(current, 0) }}
{% endblock %} {% macro section(customers, show_check) -%} {% if customers %} {% for customer in customers %} {% set outer_loop = loop %} {% endfor %}

{{ customer.name }}


{% if customer.invoices %} {% if show_check %} {% endif %} {% for invoice in customer.invoices %} {% if show_check %} {% endif %} {% endfor %}
num date begin end tier qty price amountcreate
{{ invoice.number }} {{ invoice.date }} {{ invoice.begin }} {{ invoice.end }} {{ invoice.service }} {{ invoice.qty }} {{ invoice.price|round }} {{ (invoice.qty * invoice.price)|round }} {{ invoice.currency }} {% if invoice.number == "NEW" %} {% endif %}
{% else %}

No invoices

{% endif %}
{% else %}

No matching customers.

{% endif %} {% endmacro %}