[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/unido/en/acqui.simple isbnsearch.tmpl,NONE,1.1 addbooks.tmpl,1.2,1.3

Chris Cormack rangi at users.sourceforge.net
Mon Jun 16 13:39:18 CEST 2003


Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/unido/en/acqui.simple
In directory sc8-pr-cvs1:/tmp/cvs-serv6187

Modified Files:
	addbooks.tmpl 
Added Files:
	isbnsearch.tmpl 
Log Message:
working on the unido acquisitions



--- NEW FILE ---
  <TMPL_INCLUDE NAME="acquisitions-top.inc">
<font size="6"><em>Biblio Search Results</em></font><br />
<CENTER>
You searched on <b><TMPL_IF name="isbn">ISBN <TMPL_VAR name="isbn"></TMPL_IF><TMPL_IF name="title">title <TMPL_VAR name="title"></TMPL_IF></b><br />
<TMPL_IF name="total">
<TMPL_VAR NAME=total> results found<br />
Results <TMPL_VAR name="showoffset"> to <TMPL_VAR name="total"> displayed
</TMPL_IF>
<p />
<!-- Row of numbers corresponding to search result pages -->
<TMPL_IF NAME=displayprev>
	<a href=isbnsearch.pl?offset=<TMPL_VAR NAME="prevstartfrom">&<TMPL_VAR NAME=term>=<TMPL_VAR name="value" ESCAPE=URL>><img src=<TMPL_VAR name="themelang">/images/numbers/prev.gif border=0></a>
<TMPL_ELSE>
	<img src=<TMPL_VAR name="themelang">/images/numbers/placeholder.gif border=0>
</TMPL_IF>
<TMPL_LOOP NAME=numbers>
	<TMPL_IF NAME=highlight>
	<img src=<TMPL_VAR name="themelang">/images/numbers/<TMPL_VAR NAME=number>-highlight.gif>
	<TMPL_ELSE>
	<a href=isbnsearch.pl?offset=<TMPL_VAR NAME=startfrom>&<TMPL_VAR NAME=term>=<TMPL_VAR name="value" ESCAPE=URL>><img src=<TMPL_VAR name="themelang">/images/numbers/<TMPL_VAR NAME=number>.gif border=0></a>
	</TMPL_IF>
</TMPL_LOOP>
<TMPL_IF NAME=displaynext>
	<a href=isbnsearch.pl?offset=<TMPL_VAR NAME="nextstartfrom">&<TMPL_VAR NAME=term>=<TMPL_VAR name="value" ESCAPE=URL>><img src=<TMPL_VAR name="themelang">/images/numbers/next.gif border=0></a>
<TMPL_ELSE>
	<img src=<TMPL_VAR name="themelang">/images/numbers/placeholder.gif border=0>
</TMPL_IF>

<table width="80%" cellpadding="3">
	<tr valign="center">
	<td><font size="4">Biblios in koha</font></td>
	</tr>
</table>
<table border="0" cellspacing="0" cellpadding="5" width="80%">
	<tr valign=top bgcolor=#ffcc00>
		<td><b>Title</b></td>
		<td><b>Author</b></td>
		<td><b>&copy;</b></td>
		<td>&nbsp;</td>
	</tr>
	<TMPL_IF name="loop">
	<TMPL_LOOP name="loop">
		<tr valign="top" bgcolor="<TMPL_VAR name="toggle">">
			<td><TMPL_VAR name="title"></a>
			<td><TMPL_VAR name="author"></td>
			<td><TMPL_VAR name="copyrightdate"></td>
			<TMPL_IF NAME="NOTMARC">
			  <td><a href="additem-nomarc.pl?biblionumber=<TMPL_VAR name="biblionumber">&stype=<TMPL_VAR NAME="PERIODICAL">">Add Items</a></td>
			<TMPL_ELSE>
			  <td><a href="addbiblio.pl?oldbiblionumber=<TMPL_VAR name="biblionumber">">Edit...</a></td>
			</TMPL_IF>
		</tr>
	</TMPL_LOOP>
	<TMPL_ELSE>
	<tr><td colspan=4>Nothing found</td></tr>
	</TMPL_IF>
</table>
<br />
<table width="80%" cellpadding="3">
	<tr valign="center">
	<td><font size="4">Biblios in breeding farm</font></td>
	</tr>
</table>
<table border="0" cellspacing="0" cellpadding="5" width="80%">
	<tr valign=top bgcolor=#ffcc00>
		<td><b>Title</b></td>
		<td><b>Author</b></td>
		<td><b>ISBN</b></td>
		<td><b>coming from</b></td>
		<td><b>&nbsp;</b></td>
		<td>&nbsp;</td>
	</tr>
	<TMPL_IF name="breeding_loop">
	<TMPL_LOOP name="breeding_loop">
		<tr valign="top" bgcolor="<TMPL_VAR name="toggle">">
			<td><TMPL_VAR name="title"></a>
			<td><TMPL_VAR name="author"></td>
			<td><TMPL_VAR name="isbn"></td>
			<td><TMPL_VAR name="file"></td>
			<TMPL_IF NAME="NOTMARC">
			
			<TMPL_ELSE>
			<td><a href="addbiblio.pl?breedingid=<TMPL_VAR name="id">">Add biblio</a></td>
			</TMPL_IF>
		</tr>
	</TMPL_LOOP>
	<TMPL_ELSE>
	<tr><td colspan=6>Nothing found</td></tr>
	</TMPL_IF>
	<tr>
		<td>&nbsp;</td>
		<td>&nbsp;</td>
		<td>&nbsp;</td>
		<td>&nbsp;</td>
		<TMPL_IF NAME="NOTMARC">
		<td><a href="addbiblio-nomarc.pl?isbn=<TMPL_VAR name="isbn">">Add New Biblio</a></td>
		<TMPL_ELSE>
		<td><a href="addbiblio.pl?isbn=<TMPL_VAR name="isbn">">Add New Biblio</a></td>
		</TMPL_IF>
	</tr>
</table>

<br />
<TMPL_INCLUDE NAME="acquisitions-bottom.inc">

Index: addbooks.tmpl
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/unido/en/acqui.simple/addbooks.tmpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** addbooks.tmpl	16 Jun 2003 09:55:04 -0000	1.2
--- addbooks.tmpl	16 Jun 2003 11:39:16 -0000	1.3
***************
*** 53,56 ****
--- 53,57 ----
  		<td><input type="text" name="title" class="mid-field" /></td>
  		<td><input type="submit" value="Go" class="go" /></td>
+ 		<input type=hidden name="stype" value="periodical">
  	</tr>
  	
***************
*** 76,78 ****
  <span class="tip-big">tip</span><span class="tip-text">
  If the ISBN or title is found in the biblio table, it will be retrieved and you can add another copy to it.</span>
! <TMPL_INCLUDE NAME="acquisitions-bottom.inc">
\ No newline at end of file
--- 77,79 ----
  <span class="tip-big">tip</span><span class="tip-text">
  If the ISBN or title is found in the biblio table, it will be retrieved and you can add another copy to it.</span>
! <TMPL_INCLUDE NAME="acquisitions-bottom.inc">





More information about the Koha-cvs mailing list