{# -*- mode: web; -*- #} {% extends "base.html" %} {% block title %} Customers {% endblock %} {% block content %}
Add customer
{% for customer in customers %} {% if customer.website %} {% else %} {% endif %} {% if customer.email %} {% else %} {% endif %} {% endfor %}
Name City Phone E-mail
{{ customer.name }}{{ customer.name }}{{ customer.city }} {{ customer.phone }}{{ customer.email }}
{% endblock %}