From 2f3ffb8878770fa4b800d8a90489f6327e801cfa Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 1 Apr 2019 16:35:18 +0100 Subject: Add version and contact details in footer --- app/templates/base.html | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'app/templates') diff --git a/app/templates/base.html b/app/templates/base.html index 2bcb9e3..8bc31dc 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -1,6 +1,11 @@ {% extends 'bootstrap/base.html' %} {% import "bootstrap/utils.html" as util %} +{% block styles %} +{{ super() }} + +{% endblock %} + {% block title %} {% if title %}{{ title }} -- AnnotateChange{% else %}Welcome to AnnotateChange{% endif %} {% endblock %} @@ -38,11 +43,20 @@ {% endblock %} {% block content %} -
+
{{ util.flashed_messages(dismissible=True) }} {% block app_content %} {% endblock %} -
+ + {% endblock %} -- cgit v1.2.3