normalizing API, using biblionumber everywhere
This commit is contained in:
parent
4fa499f055
commit
c815fa459c
2 changed files with 12 additions and 7 deletions
|
@ -22,10 +22,15 @@
|
|||
|
||||
<p><label class="label100" for="dewey">Dewey:</label></td><td><input type="text" size="25" id="dewey" name="dewey"></p>
|
||||
|
||||
<p> <label class="label100" for="class">Class:</label><select name="class" id="class" size="1">
|
||||
<option value=""> Any
|
||||
<!-- TMPL_VAR NAME="classlist" -->
|
||||
</select></p>
|
||||
<p> <label class="label100" for="class">Class:</label>
|
||||
<select name="class">
|
||||
<option value="">Default</option>
|
||||
<!-- TMPL_LOOP name="itemtypeloop" -->
|
||||
<option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="description" --></option>
|
||||
<!-- /TMPL_LOOP -->
|
||||
</select>
|
||||
</form>
|
||||
</p>
|
||||
|
||||
<p><label class="label100">Search Style:</label><input type="radio" name="ttype" id=" ttype" value="normal" checked>Normal
|
||||
<input type="radio" name="ttype" value="exact">Exact</p>
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
<tr>
|
||||
<td<!-- TMPL_IF NAME="even" --> class="hilighted"<!-- /TMPL_IF -->>
|
||||
<!-- TMPL_IF name="MARC_ON" -->
|
||||
<a class="transparent resultlist" href="/cgi-bin/koha/MARCdetail.pl?bib=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" --></a>
|
||||
<a class="transparent resultlist" href="/cgi-bin/koha/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" --></a>
|
||||
<!-- TMPL_ELSE -->
|
||||
<a class="transparent resultlist" href="/cgi-bin/koha/detail.pl?bib=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" --></a> <!-- /TMPL_IF -->
|
||||
<a class="transparent resultlist" href="/cgi-bin/koha/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" --></a> <!-- /TMPL_IF -->
|
||||
<p><!-- TMPL_VAR NAME="author" -->
|
||||
<!-- TMPL_IF NAME="publishercode" -->- <!-- TMPL_VAR NAME="publishercode" --><!-- /TMPL_IF -->
|
||||
<!-- TMPL_IF NAME="place" --> ; <!-- TMPL_VAR NAME="place" --><!-- /TMPL_IF -->
|
||||
|
@ -59,7 +59,7 @@
|
|||
</td>
|
||||
<td <!-- TMPL_IF NAME="even" -->class="hilighted"<!-- /TMPL_IF -->>
|
||||
<!-- TMPL_UNLESS name="norequests" -->
|
||||
<p><a class="button catalogue" href="/cgi-bin/koha/request.pl?bib=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">Request</a></p>
|
||||
<p><a class="button catalogue" href="/cgi-bin/koha/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">Request</a></p>
|
||||
<!-- TMPL_ELSE -->
|
||||
<p>Not Reservable</p>
|
||||
<!-- /TMPL_UNLESS -->
|
||||
|
|
Loading…
Reference in a new issue