Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | |
2 | <#macro myLayout tipoMenu="menu" title="SRM sito di amministrazione" scripts=["js/common.js"] iCss=["css/srm.css"] div="content-left"> |
||
3 | |||
4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//IT" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
||
5 | |||
6 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it"> |
||
7 | |||
8 | <head> |
||
9 | <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
||
10 | <#list iCss as unCss> |
||
11 | <link rel="stylesheet" type="text/css" href="${unCss}" media="screen"> |
||
12 | </#list> |
||
13 | <#list scripts as script> |
||
14 | <script type="text/javascript" charset="utf-8" src="${script}"></script> |
||
15 | </#list> |
||
16 | <title>${title}</title> |
||
17 | </head> |
||
18 | |||
19 | <body> |
||
20 | <div id="wrapper"> |
||
21 | <div id="header"> <#include "header.ftl"/> </div> |
||
22 | <div id="content"> |
||
23 | <div id="${div}" class="menu"> |
||
24 | |||
25 | <ul id="menu_css_verticale"> |
||
26 | <li><a href="<@s.url action='noAdminChangePwd'/>">Cambia password</a></li> |
||
27 | <li><a href="<@s.url action='noAdmin'/>">Lista Applicazioni</a></li> |
||
28 | <!-- Eliminato da Utente noAdmin |
||
29 | <li> |
||
30 | <a href="/srmAdmin/welcomeStats.do">Statistiche</a> |
||
31 | <#if tipoMenu=="menu4"> |
||
32 | <ul class="menu_css_rientrato"> |
||
33 | <li><a href="<@s.url action='showMonitoring'/>">Monitoraggio</a></li> |
||
34 | <li><a href="<@s.url action='showStats'/>">Statistiche</a></li> |
||
35 | </ul> |
||
36 | </#if> |
||
37 | </li> |
||
38 | --> |
||
39 | <li><a href="<@s.url action='logout'/>">Logout utente</a></li> |
||
40 | </ul> |
||
41 | |||
42 | </div> |
||
43 | <#nested/> |
||
44 | </div> |
||
45 | <div id="footer"> <#include "footer.ftl"/> </div> |
||
46 | <div id="copyright"></div> |
||
47 | </div> |
||
48 | </body> |
||
49 | </html> |
||
50 | </#macro> |