From 3654292d20cd1b9c901d4eb5898694fd9903c234 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Mon, 15 Jun 2026 22:03:52 +0000 Subject: [PATCH] Add contact_list.html template --- app/templates/contact_list.html | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 app/templates/contact_list.html diff --git a/app/templates/contact_list.html b/app/templates/contact_list.html new file mode 100644 index 0000000..4a31326 --- /dev/null +++ b/app/templates/contact_list.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} +{% block content %} +

{{ company.name }} – Kontaktpersonen

+Neuer Kontakt +Zurück +{% if contacts %} + + + + + + + + + + + + {% for c in contacts %} + + + + + + + + {% endfor %} + +
NamePositionEmailTelefonAktionen
{{ c.first_name }} {{ c.last_name }}{{ c.position or '-' }}{{ c.email or '-' }}{{ c.phone or '-' }} + Edit +
+ +
+
+{% else %} +

Keine Kontaktpersonen erfasst.

+{% endif %} +{% endblock %}