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 %} +
| Name | +Position | +Telefon | +Aktionen | +|
|---|---|---|---|---|
| {{ c.first_name }} {{ c.last_name }} | +{{ c.position or '-' }} | +{{ c.email or '-' }} | +{{ c.phone or '-' }} | ++ Edit + + | +
Keine Kontaktpersonen erfasst.
+{% endif %} +{% endblock %}