From b57020fdf28ed3f5bce2717e8555d92353012164 Mon Sep 17 00:00:00 2001 From: Leonidas Poulopoulos Date: Fri, 16 Mar 2012 16:18:00 +0200 Subject: [PATCH] Added a template block into base to ease rendering of errors.html --- templates/base.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/base.html b/templates/base.html index 1467836..363f022 100644 --- a/templates/base.html +++ b/templates/base.html @@ -36,6 +36,7 @@
+ {% block menublock %} {% if user.is_authenticated %} {% trans "Welcome" %} {{user}} {% endif %} @@ -59,6 +60,7 @@ {% else %} {% trans "Shibboleth Login" %} {% endif %} + {% endblock %}
-- 1.7.10.4