Putting this template in with reserves where it belongs. Also making a few changes...
authoroleonard <oleonard>
Sat, 3 Sep 2005 18:30:20 +0000 (18:30 +0000)
committeroleonard <oleonard>
Sat, 3 Sep 2005 18:30:20 +0000 (18:30 +0000)
koha-tmpl/intranet-tmpl/default/en/reports/reservereport.tmpl [new file with mode: 0644]

diff --git a/koha-tmpl/intranet-tmpl/default/en/reports/reservereport.tmpl b/koha-tmpl/intranet-tmpl/default/en/reports/reservereport.tmpl
new file mode 100644 (file)
index 0000000..5aa5354
--- /dev/null
@@ -0,0 +1,51 @@
+<!-- TMPL_INCLUDE Name="reports-top.inc" -->
+
+<div id="mainbloc">
+<h1>Current  Unfilled Reserves</h1>
+<table>
+<tr>
+        <th>
+                Name
+        </th>
+        <th>
+                Date of Reserve
+        </th>
+        <th>
+                Title
+        </th>
+        <th>
+                Classification
+        </th>
+        <th>
+                Status
+        </th>
+</tr>
+<!-- TMPL_LOOP Name="dataloop" -->
+       <!-- TMPL_IF NAME="toggle" --> <tr><!-- TMPL_ELSE --><tr class="hilighted"><!-- /TMPL_IF -->
+                <td>
+                        <a href="/cgi-bin/koha/members/moremember.pl?bornum=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></a>&nbsp;
+                </td>
+                <td>
+                        <!-- TMPL_VAR NAME="reservedate" -->&nbsp;
+                </td>
+                <td>
+                        <a href="/cgi-bin/koha/detail.pl?bib=<!-- TMPL_VAR NAME="biblionumber" -->&amp;type=intra"><!-- TMPL_VAR NAME="title" --></a>&nbsp;
+                </td>
+                <td>
+                        <!-- TMPL_VAR NAME="classification" -->&nbsp;
+                </td>
+                <td>
+                        <a href="/cgi-bin/koha/request.pl?bib=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="status" --></a>&nbsp;
+                </td>
+
+        </tr>
+<!-- /TMPL_LOOP -->
+<tr>
+                <td>
+                        <b>Total: <!-- TMPL_VAR NAME="count" --></b>
+                </td>
+                <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>
+        </tr>
+</table>
+</div>
+<!-- TMPL_INCLUDE Name="reports-bottom.inc" -->