From fd04c10ecefe30c81329cd720af084c4876b359c Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Mon, 15 Jun 2026 22:02:20 +0000 Subject: [PATCH] Add base.html template --- app/templates/base.html | 58 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 app/templates/base.html diff --git a/app/templates/base.html b/app/templates/base.html new file mode 100644 index 0000000..27dad78 --- /dev/null +++ b/app/templates/base.html @@ -0,0 +1,58 @@ + + + + + + LeoCRM + + + + +
+ {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
{{ message }}
+ {% endfor %} + {% endif %} + {% endwith %} + {% block content %}{% endblock %} +
+ +