You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/12/09 13:48:45 UTC

svn commit: r1418919 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Author: gjm
Date: Sun Dec  9 12:48:44 2012
New Revision: 1418919

URL: http://svn.apache.org/viewvc?rev=1418919&view=rev
Log:
adjusting indication of logged in status to show small icon and username instead of 'logged in as' text - towards #223

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1418919&r1=1418918&r2=1418919&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html Sun Dec  9 12:48:44 2012
@@ -67,7 +67,14 @@
           <py:with vars="meta_items = dict([i.name, i] for i in chrome.nav.metanav)">
             <div class="span8">
               <div class="metanav pull-right">
-                <span id="nav_login">${meta_items.login.label}</span>
+                <span id="nav_login" py:choose="">
+                  <py:when test="req.authname and req.authname != 'anonymous'">
+                    <i class="icon-user"/>${req.authname}
+                  </py:when>
+                  <py:otherwise>
+                    <a href="${req.href.login()}">${_("Login")}</a>
+                  </py:otherwise>
+                </span>
                 <span py:if="'logout' in meta_items" id="nav_logout">
                   ${meta_items.logout.label}
                 </span>