memberentryC.tmpl:add test to modify link name
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / cataloguing / addbooks.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Cataloging Home<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <!-- TMPL_INCLUDE NAME="menus.inc" -->
4 <!-- TMPL_INCLUDE NAME="menu-catalogue.inc" -->
5
6         <h1>Catalog Maintenance</h1>
7         <!-- TMPL_IF name="noitemsfound" -->
8                 No items found
9         <!-- /TMPL_IF -->
10         
11 <h2>Search Existing Records</h2>
12 <div id="addbooks_search">
13         <form action="isbnsearch.pl">
14                 <p>
15                         <label for="title">Title</label>
16                         <input type="hidden" name="marclist" value="biblio.title" />
17                         <input type="hidden" name="and_or" value="and" />
18                         <input type="hidden" name="excluding" value="" />
19                         <input type="hidden" name="operator" value="contains" />
20                         <input type="text" name="value" id="title"size="35" />
21                 </p>
22                 <p>
23                         <label for="isbn">ISBN</label>
24                         <input type="hidden" name="marclist" value="biblioitems.isbn" />
25                         <input type="hidden" name="and_or" value="and" />
26                         <input type="hidden" name="excluding" value="" />
27                         <input type="hidden" name="operator" value="start" />
28                         <input type="text" name="value" id="isbn"size="35" />
29                 </p>
30                 <p><input type="submit" value="Search" /></p>
31                 <ul>
32                         <li>If the ISBN is found into the database, that record will be retrieved and can be modified.</li>
33                         <li>If the ISBN is found in the reservoir, it will be retrieved and a full record added.</li>
34                         <li>Otherwise, a record can be added from scratch.</li>
35                 </ul>
36         </form>
37 </div>
38 <div id="addbooks_add_without_search">
39         <!-- TMPL_IF NAME="NOTMARC" -->
40                 <form action="addbiblio.pl">
41                         <input type="submit" value="Add Record Without Search" />
42                 </form>
43         <!-- TMPL_ELSE -->
44                 <form action="addbiblio.pl" method="post">
45                 <h3>Create a Blank Bibliographic Record</h3>
46                 <p>
47                         <label for="frameworkcode">Choose a Framework:</label>
48                         <select name="frameworkcode" id="frameworkcode">
49                                 <option value="">Default</option>
50                                 <!-- TMPL_LOOP NAME="frameworkcodeloop" -->
51                                         <option value="<!-- TMPL_VAR NAME="value" -->">
52                                                 <!-- TMPL_VAR NAME="frameworktext" -->
53                                         </option>
54                                 <!-- /TMPL_LOOP -->
55                         </select>
56                         <input type="submit" value="Add Record Without Search" />
57                 </p>
58                 </form>
59                         <!-- /TMPL_IF -->
60 </div>
61 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->