Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | <#import "/template/srm/defaultLayout.ftl" as layout > |
2 | |||
3 | <@layout.myLayout title="Statistiche per anno - dettaglio" tipoMenu="menu4" scripts=["js/common.js","js/jquery-latest.js","js/jquery.tablesorter.min.js"] iCss=["css/srm.css","css/tablesorter.css"]> |
||
4 | |||
5 | <script type="text/javascript"> |
||
6 | $(document).ready(function() |
||
7 | { |
||
8 | $("#tabLista").tablesorter( |
||
9 | {headers: { 3:{sorter: false} }} |
||
10 | ); |
||
11 | } |
||
12 | ); |
||
13 | </script> |
||
14 | |||
15 | <div id="content-1colonna"> |
||
16 | <h3 align="center">Statistiche per anno - dettaglio richieste</h3> |
||
17 | <#if statistiche??> |
||
18 | <#assign seqMesi = ["gennaio", "febbraio","marzo","aprile", "maggio", |
||
19 | "giugno", "luglio", "agosto", "settembre", |
||
20 | "ottobre", "novembre", "dicembre"]> |
||
21 | <h4 align="center">Ente: ${statistiche[0].nomeEnte}</h4> |
||
22 | </#if> |
||
23 | <hr> |
||
24 | <@s.form action="yearStats" method="post" cssClass="ricerca"> |
||
25 | <@s.select label="Anno" list="anni" name="anno" onchange="javascript:inviaForm('yearStats','yearStats.do');" cssClass="rigaPari"/> |
||
26 | <@s.select label="Mese" list="mesi" name="mese" headerKey="99" headerValue="Tutti i mesi" onchange="javascript:inviaForm('yearStats','yearStats.do');" cssClass="rigaDispari"/> |
||
27 | <@s.hidden id="tipoEnte" name="tipoEnte"/> |
||
28 | <tr><td colspan="2" align="right"> |
||
29 | <div class="pulsante"><a class="button icon search" href="javascript:%20inviaForm('yearStats','/srmAdmin/yearStats.do')">cerca</a></div> |
||
30 | </td></tr> |
||
31 | </@s.form> |
||
32 | <hr> |
||
33 | <#if statistiche??> |
||
34 | <table class="ricerca" id="tabLista"> |
||
35 | <thead> |
||
36 | <tr> |
||
37 | <th>Funzione</th> |
||
38 | <th>Mese</th> |
||
39 | <th>N. interrogazioni effettuate</th> |
||
40 | </tr> |
||
41 | </thead> |
||
42 | <tbody> |
||
43 | <#list statistiche as x> |
||
44 | <tr class="<#if x_index % 2 == 0 >rigaPari <#else>rigaDispari</#if>"> |
||
45 | <td>${x.nomeFunzione} </td> |
||
46 | <td>${seqMesi[x.mese-1]}</td> |
||
47 | <td>${x.numeroInterrogazioni} </td> |
||
48 | </tr> |
||
49 | </#list> |
||
50 | </tbody> |
||
51 | </table> |
||
52 | </#if> |
||
53 | </div> |
||
54 | <div id="content-right"> |
||
55 | |||
56 | |||
57 | <@s.actionmessage/> |
||
58 | <@s.fielderror /> |
||
59 | <@s.actionerror/> |
||
60 | <@s.fielderror> |
||
61 | <@s.param>id</@s.param> |
||
62 | </@s.fielderror> |
||
63 | </div> |
||
64 | </@layout.myLayout> |