Koha/koha-tmpl/intranet-tmpl/prog/en/acqui/booksellers.tmpl
kados 5f4542992a This is a minor change, but affects all templates:
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00

75 lines
2.4 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Search for supplier <!-- TMPL_VAR name="bookselname" --></title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!-- TMPL_INCLUDE NAME="menu-acqui.inc" -->
<h1>You searched on <b>supplier <!-- TMPL_VAR name="supplier" -->,</b> <!-- TMPL_VAR name="count" --> results found</h1>
<div id="acqui_order_supplierlist">
<table>
<tr>
<th>Order</th>
<th>Order receive</th>
<th>Company</th>
<th>&nbsp;</th>
</tr>
<!-- TMPL_LOOP name="loop_suppliers" -->
<tr>
<td>
<!-- TMPL_IF name="active" -->
<a href="basket.pl?supplierid=<!-- TMPL_VAR name=supplierid -->">Add order</a>
<!-- TMPL_ELSE -->
Inactive
<!-- /TMPL_IF -->
</td>
<td>
<a href="parcels.pl?supplierid=<!-- TMPL_VAR name=supplierid -->">Receive order</a>
</td>
<td><a href="supplier.pl?supplierid=<!-- TMPL_VAR name=supplierid -->"><!-- TMPL_VAR name="name" --></a></td>
<td>
<table>
<!-- TMPL_IF NAME="loop_basket"-->
<tr>
<th>Basket</th>
<th>Items</th>
<th>Created by</th>
<th>Date</th>
<th>&nbsp;</th>
</tr>
<!-- TMPL_LOOP NAME="loop_basket" -->
<tr>
<td><!-- TMPL_VAR NAME="basketno" --></td>
<td><TMPL_VAR NAME="total"></td>
<td>
<!-- TMPL_VAR name="firstname" -->
<!-- TMPL_VAR name="surname" -->
</td>
<td><!-- TMPL_VAR NAME="creationdate" --></td>
<td>
<!-- TMPL_IF name="closedate" -->
closed on <!-- TMPL_VAR NAME="closedate" -->
<a href="/cgi-bin/koha/acqui/basket.pl?basketno=<!-- TMPL_VAR NAME="basketno" -->">View</a>
<!-- TMPL_ELSE -->
<!-- TMPL_IF name="active" -->
<a href="/cgi-bin/koha/acqui/basket.pl?basketno=<!-- TMPL_VAR NAME="basketno" -->">modify</a>
<!-- TMPL_ELSE -->
<a href="/cgi-bin/koha/acqui/basket.pl?basketno=<!-- TMPL_VAR NAME="basketno" -->">View</a>
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
</td>
</tr>
<!-- /TMPL_LOOP -->
<!-- TMPL_ELSE -->
<tr><td>No pending basket</td></tr>
<!-- /TMPL_IF -->
</table>
</td>
</tr>
<!-- /TMPL_LOOP -->
</table>
</div>
<div id="action">
<a href="supplier.pl?op=enter">Add supplier</a>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->