From ce12118647a903132ec8cc65455c7883ef3d79bc Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 7 May 2019 17:00:51 +0100 Subject: [PATCH] footer: Add spacing between user name and logout button Signed-off-by: Michael Tremer --- src/templates/base.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/templates/base.html b/src/templates/base.html index 21d04691..449f53cd 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -319,10 +319,13 @@ {% if not current_user and hostname in ("blog.ipfire.org", "nopaste.ipfire.org", "wiki.ipfire.org") %} {{ _("Login") }} {% elif current_user %} - - {{ _("You are currently logged in as %s") % current_user.name }} +

+ + {{ _("You are currently logged in as %s") % current_user.name }} + + {{ _("Logout") }} - +

{% end %} -- 2.47.3