From 8bef4f81e080c2797d2507cc73732340a68bcd7b Mon Sep 17 00:00:00 2001 From: Isaak Buslovich Date: Mon, 29 Jan 2024 19:53:01 +0100 Subject: [PATCH] Zahlungserinnerungen added --- app/routes.py | 7 +++++++ app/templates/index.html | 4 ++++ app/templates/partials/zahlungserinnerungen.html | 12 ++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 app/templates/partials/zahlungserinnerungen.html diff --git a/app/routes.py b/app/routes.py index 379b62f..ff794a7 100644 --- a/app/routes.py +++ b/app/routes.py @@ -76,6 +76,13 @@ def add_invoice(): return "An error occurred while adding the invoice", 500 +# Other imports and routes... + +@app.route('/zahlungserinnerungen') +def zahlungserinnerungen(): + return render_htmx_or_full('partials/zahlungserinnerungen.html', 'index.html') + + @app.route('/flottenmanagement') def flottenmanagement(): return render_htmx_or_full('partials/flottenmanagement.html', 'index.html') diff --git a/app/templates/index.html b/app/templates/index.html index 95cebbd..caab5c7 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -70,6 +70,10 @@ account_balance_wallet Buchhaltung +