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