Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | <#import "/template/srm/noAdminLayout.ftl" as layout > |
2 | |||
3 | <@layout.myLayout title="Statistiche per anno" |
||
4 | tipoMenu="menu4" |
||
5 | scripts=["js/common.js","js/jquery-latest.js","js/jquery.tablesorter.min.js"] |
||
6 | iCss=["css/srm.css","css/tablesorter.css","css/note.css"]> |
||
7 | |||
8 | <script type="text/javascript"> |
||
9 | $(document).ready(function() |
||
10 | { |
||
11 | $("#tabLista").tablesorter( |
||
12 | {headers: { 3:{sorter: false} }} |
||
13 | ); |
||
14 | } |
||
15 | ); |
||
16 | </script> |
||
17 | |||
18 | <div id="content-1colonna"> |
||
19 | <h3 align="center">Buongiorno utente ${utente.username}</h3> |
||
20 | <h4 align="center">sei abilitato alle seguenti funzioni.</h4> |
||
21 | <hr> |
||
22 | <#if apps??> |
||
23 | <@s.form action="noAdmin" method="post" cssClass="ricerca" > |
||
24 | <@s.select label="Applicazione" list="apps" name="codApplicazione" listKey="codApplicazione" listValue="descrizioneApplicazione" onchange="javascript:inviaForm('noAdmin','noAdmin.do');" cssClass="rigaPari" target="_blank"/> |
||
25 | <@s.hidden id="username" name="j_username" value="${utente.username}" /> |
||
26 | <@s.hidden id="password" name="j_password" value="${utente.password}" /> |
||
27 | <@s.hidden id="redirect" name="spring-security-redirect" /> |
||
28 | |||
29 | <tr><td colspan="2" align="right"> |
||
30 | <div class="pulsante"><a class="button icon search" href="javascript:inviaForm('noAdmin','/srmAdmin/noAdmin.do')">cerca</a></div> |
||
31 | </td></tr> |
||
32 | |||
33 | </@s.form> |
||
34 | </#if> |
||
35 | <hr> |
||
36 | <#if abilitazioni??> |
||
37 | |||
38 | |||
39 | <table class="ricerca" id="tabLista"> |
||
40 | <thead> |
||
41 | <tr> |
||
42 | <th>Gruppo</th> |
||
43 | <th>Funzione</th> |
||
44 | <th>Descrizione</th> |
||
45 | <th> </th> |
||
46 | </tr> |
||
47 | </thead> |
||
48 | <tbody> |
||
49 | <#list abilitazioni as abilitazione> |
||
50 | <#assign funzione = abilitazione.funzione> |
||
51 | |||
52 | <#assign nomeGruppo = abilitazione.funzione.gruppoFunzione.nomeGruppo> |
||
53 | <#if abilitazione.url??> |
||
54 | <#assign urlApplicazione = abilitazione.url> |
||
55 | <#else> |
||
56 | <#assign urlApplicazione = ""> |
||
57 | </#if> |
||
58 | <#if funzione.link??> |
||
59 | <tr class="<#if abilitazione_index % 2 == 0 >rigaPari <#else>rigaDispari</#if>"> |
||
60 | <td>${nomeGruppo}</td> |
||
61 | <td>${funzione.nomeFunzione} </td> |
||
62 | <td>${funzione.descrizioneFunzione}</td> |
||
63 | <td><#if funzione.link??>${urlApplicazione}/${funzione.link}</#if></td> |
||
64 | </tr> |
||
65 | </#if> |
||
66 | </#list> |
||
67 | </tbody> |
||
68 | </table> |
||
69 | </#if> |
||
70 | |||
71 | |||
72 | |||
73 | <@s.actionmessage/> |
||
74 | <@s.fielderror /> |
||
75 | <@s.actionerror/> |
||
76 | <@s.fielderror> |
||
77 | <@s.param>id</@s.param> |
||
78 | </@s.fielderror> |
||
79 | </div> |
||
80 | </@layout.myLayout> |