Moving inline script blocks to <head> where possible
[koha_gimpoz] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / itemtypes.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Reports</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!-- Additions to enable Calendar system -->
5 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-system.css" />
6 <!-- End of additions --><!-- Additions to enable Calendar system -->
7 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar.js"></script>
8 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-en.js"></script>
9 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-setup.js"></script>
10 <!-- End of additions -->
11 </head>
12 <body>
13 <!-- TMPL_INCLUDE NAME="header.inc" -->
14
15 <!-- TMPL_INCLUDE NAME="menu-reports.inc"-->
16
17 <div id="doc3" class="yui-t2">
18    
19    <div id="bd">
20         <div id="yui-main">
21         <div class="yui-b"><div class="yui-g">
22
23 <!-- TMPL_IF NAME="do_it" -->
24 <!-- TMPL_LOOP NAME="mainloop" -->
25         <h1>Koha : Reports on itemtypes <!--TMPL_IF NAME="branch" --> for branch = <!-- TMPL_VAR NAME="branch" --><!-- /TMPL_IF --></h1>
26         <table>
27                 <tr>
28                         <th>Item type</th>
29                         <th>count</th>
30                 </tr>
31                         <!-- TMPL_LOOP NAME="loopitemtype" -->
32                                 <tr>
33                                         <td><!-- TMPL_VAR NAME="itemtype" --></td>
34                                         <td><!-- TMPL_VAR NAME="count" --></td>
35                                 </tr>
36                         <!-- /TMPL_LOOP -->
37                         <tr>
38                                 <th>TOTAL</th>
39                                 <th><!-- TMPL_VAR NAME="total" --></th>
40         </table>
41 <!-- /TMPL_LOOP -->
42 <!-- TMPL_ELSE -->
43         <h1>View catalogue group by itemtypes</h1>
44         <form method="post">
45                 Select a branch (or don't if you want the report for all branches) <!-- TMPL_VAR NAME="CGIbranch" -->
46                 <input type="submit" value="OK" />
47                 <input type="hidden" name="report_name" value="<!--TMPL_VAR NAME="report_name" -->" />
48                 <input type="hidden" name="do_it" value="1" />
49         </form>
50 <!-- /TMPL_IF -->
51 </div>
52 </div>
53 </div>
54
55 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
56 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->