Koha/koha-tmpl/intranet-tmpl/prog/en/bookshelves/addbookbybiblionumber.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

42 lines
1.5 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Add to Virtual Shelf</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<h1>Add
<i><!-- TMPL_VAR NAME="title" --></i>
<!-- TMPL_IF NAME="author" -->
by <!-- TMPL_VAR NAME="author" -->
<!-- /TMPL_IF --> to a virtual shelf
</h1>
<form name="f1" method="POST" action="/cgi-bin/koha/bookshelves/addbookbybiblionumber.pl">
<input type="hidden" name="biblionumber" value="<!-- TMPL_VAR NAME="biblionumber" -->">
<b>Select an existing shelf</b>
<p>
<label>Add to virtual shelf</label><!-- TMPL_VAR NAME="CGIbookshelves" -->
</p>
<input type="hidden" name="biblionumber" value="<!-- TMPL_VAR NAME="biblionumber" -->" />
<input type="submit" value="Add to virtual shelf" class="submit" />
</form>
<p>...or...</p>
<form name="f2" method="POST" action="/cgi-bin/koha/bookshelves/addbookbybiblionumber.pl">
<b>Add to a new shelf:</b>
<p>
<label for="newbookshelf">
Shelf name:
</label>
<input type="text" name="newbookshelf" id="newbookshelf" size="40" />
</p>
<p>
<label for="category">Category:</label>
<select name="category" id="category">
<option value="1">Private</option>
<option value="2">Public</option>
</select>
</p>
<input type="submit" value="Add to virtual shelf" class="submit" />
</form>
</body>
</html>