123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <div id="topBar" >
- <div class="container row">
- <div class="col-sm-5">
- <div>
- <div style="float:left;margin-top: 5px;"><IMG SRC="<@base/>/static/images/logo.jpg" style="width:55px;heigth:55px"></div>
- <div style="letter-spacing:2px;font-size:24px;font-weight:bolder;margin-top: 16px;float:left;"><@locale code="global.application"/></div>
- </div>
- </div>
- <div class="col-sm-3">
- <div style="margin-top:25px;margin-right:10px;float:right;">
- <table style="height: 31px;">
- <tr>
- <td>
- <@locale code="global.text.welcome"/>:
- <#if Session["current_user"]?exists>
- ${Session["current_user"].displayName} ${Session["current_user"].username}
- </#if>
-
- </td>
-
- </tr>
- </table>
- </div >
- </div>
- <div class="col-sm-4">
- <div style="margin-top:25px;margin-right:10px;float:right;">
- <table style="height: 31px;">
- <tr>
- <#if Session["current_user"].gridList==0 >
- <td>
- <a href="<@base/>/appList?mnid=110101020000&gridList=1"><img class="grid_list_sel" src='<@base/>/static/images/list_sel.png' ></a>
- </td>
- <#else>
- <td>
- <a href="<@base/>/appList?mnid=110101020000&gridList=0" ><img class="grid_list_sel" src='<@base/>/static/images/grid_sel.png'></a>
- </td>
- </#if>
- <td id="changepassword" nowrap>
- <a href="<@base/>/safe/forward/changePasswod">
- <div style="float:right;" > <@locale code="login.password.changepassword"/> </div>
- </a>
- </td>
- <#if Session["current_authentication"].principal.roleAdministrators==true >
- <td id="manage" nowrap>
- <a target="_blank" href="<@base/>/authz/maxkey_mgt">
- <div style="float:right;" > <@locale code="global.text.manage"/> </div>
- </a>
- </td>
- </#if>
- <td id="logout" class="ui-widget-header" >
- <a href="<@base/>/logout?reLoginUrl=login">
- <div style="float:right;" > <@locale code="global.text.logout"/> </div>
- </a>
- </td>
- </tr>
- </table>
- </div >
- </div>
- </div>
- </div>
|