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 %}