Koha/koha-tmpl/intranet-tmpl/default/en/acqui/order.tmpl
tipaul 95d74b39dd * bugfixes
* adding buttons to switch between normal and MARC view of a record
* adding graphic buttons in templates
2003-03-07 16:36:29 +00:00

47 lines
1.9 KiB
Cheetah

<TMPL_INCLUDE name="acquisitions-top.inc">
<FONT SIZE=6><em>Supplier Search Results</em></FONT><br />
<a href=supplier.pl?id=0><input type=image src="<TMPL_VAR NAME='interface'>/<TMPL_VAR name="theme">/images/filenew.png" title="Add supplier" ALT="Add" BORDER=0 ></a>
<CENTER>
You searched on <b>supplier <TMPL_VAR name="supplier">,</b> <TMPL_VAR name="count"> results found<p>
<table border=0 cellspacing=0 cellpadding=5 width="80%">
<tr valign=top bgcolor="#ffdf61">
<td width="10%"><b>Order</b></td>
<td width="10%"><b>Recieve<b></td>
<td width="30%"><b>Company</b></td>
<td width="50%">
<table width="100%" border=0 cellspacing=0 cellpadding=5>
<tr>
<td width="15%"><b>Basket</b></td>
<td width="15%"><b>Items</b></td>
<td width="40%"><b>Staff</b></td>
<td width="30%"><b>Date</b></td>
</tr>
</table>
</td>
</tr>
<TMPL_LOOP name="loop_suppliers">
<tr valign=top bgcolor=<TMPL_VAR name="color">>
<td>
<a href="basket.pl?id=<TMPL_VAR name="id">"><input type=image src="<TMPL_VAR NAME='interface'>/<TMPL_VAR name="theme">/images/mail_send.png" title="Add order" ALT="Add" BORDER=0 ></a>
</td>
<td>
<a href="recieveorder.pl?id=<TMPL_VAR name="id">"><input type=image src="<TMPL_VAR NAME='interface'>/<TMPL_VAR name="theme">/images/mail_get.png" title="recieve" ALT="Add" BORDER=0 ></a>
</td>
<td><a href="supplier.pl?id=<TMPL_VAR name="id">"><TMPL_VAR name="name"></a></td>
<td>
<table width="100%" cellspacing=0 cellpadding=5 border=0>
<TMPL_LOOP name="loop_basket">
<tr>
<td width="15%"><a href="/cgi-bin/koha/acqui/basket.pl?basket=<TMPL_VAR name="basketno">"><TMPL_VAR name="basketno"></a></td>
<td width="15%"><TMPl_VAR name="total"></td>
<td width="40%"><TMPL_VAR name="authorisedby"></td>
<td width="30%"><TMPL_VAR name="entrydate"></td>
</tr>
</TMPL_LOOP>
</table>
</tr>
</TMPL_LOOP>
</table>
</CENTER>
<TMPL_INCLUDE name="acquisitions-bottom.inc">