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

Dashboard

+Neue Firma +{% if companies %} + + + + + + + + + + + {% for c in companies %} + + + + + + + {% endfor %} + +
NameTelefonEmailAktionen
{{ c.name }}{{ c.phone or '-' }}{{ c.email or '-' }} + Edit +
+ +
+
+{% else %} +

Noch keine Firmen erfasst.

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