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