{% extends "two_column_layout.html" %} {% load i18n %} {% block toolbar %} {% trans "New Customer" %} {% endblock toolbar %} {% block header_row %}

{{ title }}

{% endblock header_row %} {% block first_column %} {% endblock first_column %} {% block second_column %} {% if customers %} {% for i in customers %}
{{ i.fullname }}
{% if i.street_address %} {{ i.street_address }}
{{ i.zip_code }}, {{ i.city }}
{% endif %} {% if i.phone %} P: {{ i.phone }} {% endif %} {% if i.email %}
{{ i.email }} {% endif %}

{% endfor %} {% else %}

{% trans "No customers found" %}

{% endif %} {% endblock second_column %} {% block crumbs %}
  • {% trans "Customers" %} /
  • {{ title }}
  • {% endblock crumbs %}