You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2007/04/16 11:31:42 UTC

svn commit: r529183 - /ofbiz/trunk/framework/common/webcommon/includes/header.ftl

Author: jacopoc
Date: Mon Apr 16 02:31:41 2007
New Revision: 529183

URL: http://svn.apache.org/viewvc?view=rev&rev=529183
Log:
Added userLoginId near the name of the logged in party.

Modified:
    ofbiz/trunk/framework/common/webcommon/includes/header.ftl

Modified: ofbiz/trunk/framework/common/webcommon/includes/header.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/includes/header.ftl?view=diff&rev=529183&r1=529182&r2=529183
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/includes/header.ftl (original)
+++ ofbiz/trunk/framework/common/webcommon/includes/header.ftl Mon Apr 16 02:31:41 2007
@@ -61,9 +61,9 @@
         <br />
         <p>
         <#if person?has_content>
-          ${uiLabelMap.CommonWelcome}&nbsp;${person.firstName?if_exists}&nbsp;${person.lastName?if_exists}!
+          ${uiLabelMap.CommonWelcome}&nbsp;${person.firstName?if_exists}&nbsp;${person.lastName?if_exists}&nbsp;[${userLogin.userLoginId}]
         <#elseif partyGroup?has_content>
-          ${uiLabelMap.CommonWelcome}&nbsp;${partyGroup.groupName?if_exists}!
+          ${uiLabelMap.CommonWelcome}&nbsp;${partyGroup.groupName?if_exists}&nbsp;[${userLogin.userLoginId}]
         <#else>
           ${uiLabelMap.CommonWelcome}!
         </#if>