From 72acde7122a79c5a68a9e9ec1e3885a6f2d443a2 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Wed, 31 Jul 2019 00:07:29 +0200 Subject: Add footer with links --- ihatemoney/templates/layout.html | 191 ++++++++++++++++++++++----------------- 1 file changed, 108 insertions(+), 83 deletions(-) (limited to 'ihatemoney/templates/layout.html') diff --git a/ihatemoney/templates/layout.html b/ihatemoney/templates/layout.html index 10bb628..5f61949 100644 --- a/ihatemoney/templates/layout.html +++ b/ihatemoney/templates/layout.html @@ -1,6 +1,6 @@ {% import "forms.html" as forms %} - + {{ _("Account manager") }}{% block title %}{% endblock %} @@ -26,100 +26,125 @@ }); - -
-
+ - - +
+ {% block body %} +
+ {% block content %}{% endblock %} +
+ {% endblock %}
-
-{% block body %} -
- {% block content %}{% endblock %} -
-
-{% endblock %} +
+ {% for message in get_flashed_messages() %} +
{{ message }}
+ {% endfor %} +
-
- {% for message in get_flashed_messages() %} -
{{ message }}
- {% endfor %} -
+ {% block footer %} + + {% endblock %} -- cgit v1.1