From: Michael Tremer Date: Tue, 7 May 2019 16:00:51 +0000 (+0100) Subject: footer: Add spacing between user name and logout button X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce12118647a903132ec8cc65455c7883ef3d79bc;p=ipfire.org.git footer: Add spacing between user name and logout button Signed-off-by: Michael Tremer --- 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 %}