{% load custom_tags_and_filters %}

Invoices settings

{% csrf_token %}
{% if errors.invoice_month_list_since %} {{ errors.invoice_month_list_since.error }} {% else %} Only allow generating invoices from this date forward. {% endif %}
{% if errors.invoice_number_format %} {{ errors.invoice_number_format.error }} {% else %} The format to use when creating invoice numbers. See Python Format String Syntax for more details. {% endif %}
The current invoice number.
{{ invoice_number_formatted }}
{% if errors.invoice_zip_export_template %} {{ errors.invoice_zip_export_template.error }} {% else %} The django template used in the zip file when downloading invoices. Use '/' to organize into subfolders. The context variables invoice, project_name, account_name are provided. {% endif %}
{{ invoice_zip_template_formatted }}
{% if "NEMO_billing.prepayments"|app_installed %}
{% endif %}

{% button type="save" value="Save settings" %}

Invoice email subject & message

This is the email the project contact will receive with his invoice. The following context variables are provided when the email is rendered:

{% include 'customizations/customizations_upload.html' with element=email_send_invoice_subject name='email send invoice subject' button_name='Upload invoice email subject' extension='txt' key='invoices' %}
{% include 'customizations/customizations_upload.html' with element=email_send_invoice_message name='email send invoice message' button_name='Upload invoice email' key='invoices' %}

Invoice reminder email subject & message

This is the email the project contact will receive as a reminder when his invoice has an outstanding balance. The following context variables are provided when the email is rendered:

{% include 'customizations/customizations_upload.html' with element=email_send_invoice_reminder_subject name='email send invoice reminder subject' button_name='Upload invoice reminder email subject' extension='txt' key='invoices' %}
{% include 'customizations/customizations_upload.html' with element=email_send_invoice_reminder_message name='email send invoice reminder message' button_name='Upload invoice reminder email' key='invoices' %}