[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/reports reservereport.tmpl,NONE,1.1

Owen Leonard oleonard at users.sourceforge.net
Sat Sep 3 20:30:23 CEST 2005


Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/reports
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20055/koha-tmpl/intranet-tmpl/default/en/reports

Added Files:
	reservereport.tmpl 
Log Message:
Putting this template in with reserves where it belongs.  Also making a few changes: bringing it more in line with other CSS templates, adding alternating row colors, formatting links properly to go with updates to the script.

--- NEW FILE ---
<!-- 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" -->





More information about the Koha-cvs mailing list