moving calendar to lib
[koha.git] / 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 <!--TMPL_INCLUDE NAME="menus.inc" --><!-- TMPL_INCLUDE NAME="menu-reports.inc"-->
5 <!-- Additions to enable Calendar system -->
6 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-system.css">
7 <!-- End of additions --><!-- Additions to enable Calendar system -->
8 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar.js"></script>
9 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-en.js"></script>
10 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-setup.js"></script>
11 <!-- End of additions -->
12
13 <!-- TMPL_IF NAME="do_it" -->
14 <!-- TMPL_LOOP NAME="mainloop" -->
15         <h1>Koha : Reports on itemtypes <!--TMPL_IF NAME="branch" --> for branch = <!-- TMPL_VAR NAME="branch" --><!-- /TMPL_IF --></h1>
16         <table>
17                 <tr>
18                         <th>Item type</th>
19                         <th>count</th>
20                 </tr>
21                         <!-- TMPL_LOOP NAME="loopitemtype" -->
22                                 <tr>
23                                         <td><!-- TMPL_VAR NAME="itemtype" --></td>
24                                         <td><!-- TMPL_VAR NAME="count" --></td>
25                                 </tr>
26                         <!-- /TMPL_LOOP -->
27                         <tr>
28                                 <th>TOTAL</th>
29                                 <th><!-- TMPL_VAR NAME="total" --></th>
30         </table>
31 <!-- /TMPL_LOOP -->
32 <!-- TMPL_ELSE -->
33         <h1>View catalogue group by itemtypes</h1>
34         <form method="post">
35                 Select a branch (or don't if you want the report for all branches) <!-- TMPL_VAR NAME="CGIbranch" -->
36                 <input type="submit" value="OK" />
37                 <input type="hidden" name="report_name" value="<!--TMPL_VAR NAME="report_name" -->" />
38                 <input type="hidden" name="do_it" value="1" />
39         </form>
40 <!-- /TMPL_IF -->
41
42 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->