{% extends "base.html" %} {% set active_page = "customers" %} {% block page_title %}Kunden{% endblock %} {% block page_sub %}
{{ customers|length }} Kunde{{ 'n' if customers|length != 1 else '' }}
{% endblock %} {% block content %}

Kunden

{% if can_create %} {% endif %}
{% for c in customers %} {% else %} {% endfor %}
Kunde Kontakt Tickets Aktionen
{{ c.name }} {{ c.contact_email or '—' }}{% if c.contact_phone %} · {{ c.contact_phone }}{% endif %} {{ c.ticket_count }}
{% if can_edit %} {% if c.ticket_count == 0 %}
{% endif %} {% endif %} {% if current_user.has_permission('licenses.create') %} {% endif %}
Noch keine Kunden angelegt.
{% for c in customers %} {% endfor %} {% endblock %} {% block scripts %} {% endblock %}