Fixing a bug that occured if Koha wasnt installed, but a cookie was set in the browser
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / cataloguing / additem-nomarc.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Cataloging &rsaquo; Add Items</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_IF NAME="NOBARCODE" -->
6 You must give the item a barcode
7 <!-- /TMPL_IF -->
8
9 <!-- TMPL_IF NAME="NOBIBLIOITEM" -->
10 You must create a new group for your item to be
11 added to<!-- /TMPL_IF -->
12
13 <!-- TMPL_IF NAME="BARCODEINUSE" -->
14 Sorry, that barcode is already in use<!-- /TMPL_IF -->
15
16 <h2>Add items for <!-- TMPL_VAR NAME="TITLE" --></h2>
17
18 <table>
19         <caption>Bibliographic Details</caption>
20 <tr><th scope="row">Author:</th><td><!-- TMPL_VAR NAME="AUTHOR" --></td></tr>
21 <tr><th scope="row">Copyright:</th><td><!-- TMPL_VAR NAME="COPYRIGHT" --></td></tr>
22 <tr><th scope="row">Series Title:</th><td><!-- TMPL_VAR NAME="SERIES" --></td></tr>
23 <tr><th scope="row">Notes:</th><td><!-- TMPL_VAR NAME="NOTES" --></td></tr>
24
25 <!-- TMPL_LOOP NAME="BIBITEMS" -->
26 <tr><th scope="row">Biblioitem Number: </th><td><!-- TMPL_VAR NAME="biblioitemnumber" --></td></tr>
27 <tr><th scope="row">Item Type: </th><td><!-- TMPL_VAR NAME="itemtype" --></td></tr>
28 <tr><th scope="row">ISBN:</th><td><!-- TMPL_VAR NAME="isbn" --></td></tr>
29 <tr><th scope="row">Dewey:</th><td><!-- TMPL_VAR NAME="dewey" --></td></tr>
30 <tr><th scope="row">Publisher:</th><td><!-- TMPL_VAR NAME="publishercode" --></td></tr>
31 <tr><th scope="row">Place:</th><td><!-- TMPL_VAR NAME="place" --></td></tr>
32 <tr><th scope="row">Date:</th><td><!-- TMPL_VAR NAME="publicationyear" --></td></tr>
33
34 <!-- TMPL_LOOP NAME="ITEMS -->
35 <tr><th scope="row">Item:</th><td><!-- TMPL_VAR NAME="barcode" --></td></tr>
36 <tr><th scope="row">Home Library:</th><td><!-- TMPL_VAR NAME="homebranch" --></td></tr>
37 <tr><th scope="row">Notes:</th><td><!-- TMPL_VAR NAME="itemnotes" --></td></tr>
38 <!-- /TMPL_LOOP -->
39
40 <!-- /TMPL_LOOP -->
41 </table>
42
43
44 <form action="saveitem.pl" method="post">
45 <input type="hidden" name="biblionumber" value="<!-- TMPL_VAR NAME="BIBNUM" -->" />
46 <table>
47 <caption>Add New Item</caption>
48 <tr><th scope="row"><label for="barcode">Item Barcode:</label></th><td><input type="text" id="barcode" name="barcode" size="40" /></td>
49 </tr>
50 <tr><th scope="row"><label for="homebranch">Library:</label></th><td><select name="homebranch" id="branch">
51 <!-- TMPL_LOOP NAME="BRANCHES" -->
52 <option value="<!-- TMPL_VAR NAME="branchcode" -->"><!-- TMPL_VAR NAME="branchname" --></option>
53 <!-- /TMPL_LOOP -->
54 </select></td>
55 </tr>
56 <tr><th scope="row"><label for="replacementprice">Replacement Price:</label></th><td><input type="text" name="replacementprice" id="replacementprice" size="40" /></td>
57 </tr>
58 <tr><th scope="row"><label for="itemnotes">Notes:</label></th><td><textarea name="itemnotes" id="itemnotes" cols="30" rows="6"></textarea></td>
59 </tr>
60 <tr>
61 <th colspan="2" >Add to existing group</td>
62 </tr>
63 <tr><th scope="row"><label for="biblioitemnumber">Biblioitem Number:</label></th><td><select name="biblioitemnumber" id="biblioitemnumber">
64 <!-- TMPL_LOOP NAME="BIBITEMS" -->
65     <option value="<!-- TMPL_VAR NAME="biblioitemnumber" -->"><!-- TMPL_VAR NAME="itemtype" --></option>
66 <!-- /TMPL_LOOP -->
67 </select></td></tr>
68 </table>
69 <input type="submit" name="existinggroup"
70 value="Add New Item to Existing Group" />
71 <table>
72 <caption>OR Add to a new
73 Group:</caption>
74 <tr><th scope="row"><label for="itemtype">Item Type:</label></th><td><select name="itemtype" id="itemtype">
75 <!-- TMPL_LOOP NAME="ITEMTYPES" -->
76 <option value="<!-- TMPL_VAR NAME="itemtype" -->"><!-- TMPL_VAR NAME="description" --></option>
77 <!-- /TMPL_LOOP -->
78 </select></td>
79 </tr>
80 <tr><th scope="row"><label for="isbn">ISBN:</label></th><td><input type="text" name="isbn" id="isbn" size="40" /></td>
81 </tr>
82 <tr><th scope="row"><label for="publishercode">Publisher:</label></th><td><input type="text" name="publishercode" id="publishercode" size="40" /></td>
83 </tr>
84 <tr><th scope="row"><label for="publicationyear">Publication Year:</label></th><td><input type="text" name="publicationyear" id="publicationyear" size="40" /></td>
85 </tr>
86 <tr><th scope="row"><label for="place">Place of Publication:</label></th><td><input type="text" name="place" id="place" size="40" /></td>
87 </tr>
88 <tr><th scope="row"><label for="illus">Illustrator:</label></th><td><input type="text" name="illus" id="illus" size="40" /></td>
89 </tr>
90 <tr><th scope="row"><label for="url">Website URL:</label></th><td><input type="text" name="url" id="url" size="40" /></td>
91 </tr>
92 <tr><th scope="row"><label for="dewey">Dewey:</label></th><td><input type="text" name="dewey" id="dewey" size="40" /></td>
93 </tr>
94 <tr><th scope="row"><label for="subclass">Dewey Subclass:</label></th><td><input type="text" name="subclass" id="subclass" size="40" /></td>
95 </tr>
96 <tr><th scope="row"><label for="issn">ISSN:</label></th><td><input type="text" name="issn" id="issn" size="40" /></td>
97 </tr>
98 <tr><th scope="row"><label for="lccn">LCCN:</label></th><td><input type="text" name="lccn" id="lccn" size="40" /></td>
99 </tr>
100 <tr><th scope="row"><label for="volume">Volume:</label></th><td><input type="text" name="volume" id="volume" size="40" /></td>
101 </tr>
102 <tr><th scope="row"><label for="number">Number:</label></th><td><input type="text" name="number" id="number" size="40" /></td>
103 </tr>
104 <tr><th scope="row"><label for="volumeddesc">Volume Description:</label></th><td><input type="text" name="volumeddesc" id="volumeddesc" size="40" /></td>
105 </tr>
106 <tr><th scope="row"><label for="pages">Pages:</label></th><td><input type="text" name="pages" id="pages" size="40" /></td>
107 </tr>
108 <tr><th scope="row"><label for="size">Size:</label></th><td><input name="size" size="40" /></td>
109 </tr>
110 <tr><th scope="row"><label for="notes">Notes:</label></th><td><textarea cols="30" rows="6" name="notes" id="notes"></textarea></td>
111 </tr>
112 </table>
113 <input type="submit" name="newgroup" value="Add New Item to New Group">
114 </form>
115 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->