removing note from results list
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / cataloguing / addbooks.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Cataloguing</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-catalogue.inc" -->
7
8         <h1>Koha &rsaquo; Catalogue Maintenance</h1>
9         <!-- TMPL_IF name="noitemsfound" -->
10                 No items found
11         <!-- /TMPL_IF -->
12         
13 <h2>Search Existing Records</h2>
14 <div id="addbooks_search">
15         <form name="search" action="addbooks.pl">
16         <label for="q">Search the catalog: </label>
17         <input id="q" type="text"  size="25"   name="q" />
18         <input type="submit" value="search">
19         </form>
20 </div>
21 <div id="addbooks_add_without_search">
22         <!-- TMPL_IF NAME="NOTMARC" -->
23                 <form action="addbiblio.pl">
24                         <input type="submit" value="Add Record Without Search" />
25                 </form>
26         <!-- TMPL_ELSE -->
27                 <form name="f" action="addbiblio.pl" method="post">
28                 <h2>Create a Blank Bibliographic Record</h2>
29                 <p>
30                         <label for="frameworkcode">Choose a Framework:</label>
31                         <select name="frameworkcode" id="frameworkcode">
32                                 <option value="">Default</option>
33                                 <!-- TMPL_LOOP NAME="frameworkcodeloop" -->
34                                         <option value="<!-- TMPL_VAR NAME="value" -->">
35                                                 <!-- TMPL_VAR NAME="frameworktext" -->
36                                         </option>
37                                 <!-- /TMPL_LOOP -->
38                         </select>
39                         <input type="submit" value="Add Record Without Search" />
40                 </p>
41                 </form>
42                         <!-- /TMPL_IF -->
43 </div>
44
45
46 <!-- display the search results -->
47
48 <!-- TMPL_IF NAME="total"-->
49 <!-- TMPL_VAR NAME="total"--> Results found in catalogue.
50 <div class="searchresults">
51     <table>
52         <tr>
53             <th>Title</th>
54             <th>Location</th>
55             <th>&nbsp;</th>
56         </tr>
57     <!-- TMPL_LOOP NAME="resultsloop" -->
58         <!-- TMPL_IF name="even" -->
59             <tr class="highlight">
60         <!-- TMPL_ELSE -->
61             <tr>
62         <!-- /TMPL_IF -->
63             <td>
64                 <p>
65                     <!-- TMPL_VAR NAME="title" -->
66                 <!-- TMPL_VAR NAME="subtitle" -->
67                 <!-- TMPL_IF name="summary" -->
68                     <p><!-- TMPL_VAR name="summary" --></p>
69                 <!-- TMPL_ELSE -->
70                     <p>
71                         <!-- TMPL_IF NAME="author" -->
72                             <!-- TMPL_VAR NAME="author" -->
73                         <!-- TMPL_ELSE -->
74                             &nbsp;
75                         <!-- /TMPL_IF -->
76                         <!-- TMPL_IF name="publicationyear" --> - <!-- TMPL_VAR name="publicationyear" --><!-- /TMPL_IF -->
77                         <!-- TMPL_IF name="publishercode" -->- <!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
78                         <!-- TMPL_IF name="place" --> ; <!-- TMPL_VAR name="place" --><!-- /TMPL_IF -->
79                         <!-- TMPL_IF name="pages" --> - <!-- TMPL_VAR name="pages" --><!-- /TMPL_IF -->
80                         <!-- TMPL_IF name="size" --> ; <!-- TMPL_VAR name="size" --><!-- /TMPL_IF -->
81                         <!-- TMPL_IF name="timestamp" --> <i>(modified on <!-- TMPL_VAR name="timestamp" -->)</i><!-- /TMPL_IF -->
82                     </p>
83                 <!-- /TMPL_IF -->
84                 </td>
85                 <td>
86                     <!-- TMPL_IF NAME="items_loop" -->
87                         <span class="available">
88                         <!-- TMPL_LOOP NAME="items_loop" -->
89                             <!-- TMPL_VAR NAME="count" --> <!-- TMPL_VAR NAME="branchname" -->
90                             <i>
91                         <!-- TMPL_IF name="location" --><!-- TMPL_VAR name="location" --><!-- /TMPL_IF -->
92                         <!-- TMPL_IF name="itemcallnumber" --><!-- TMPL_VAR name="itemcallnumber" --><!-- /TMPL_IF -->
93                             <!-- TMPL_IF name="classification" -->
94                             <a href="/cgi-bin/koha/catalogue/search.pl?q=callnum:<!-- TMPL_VAR NAME="classification" ESCAPE="URL" -->">
95                                 <!-- TMPL_VAR NAME="classification" -->
96                             </a>
97                         <!-- /TMPL_IF -->
98                         </i>
99                             <br />
100                         <!-- /TMPL_LOOP -->
101                         </span>
102                     <!-- /TMPL_IF -->
103                     <span class="unavailable">
104                         <!-- TMPL_IF NAME="onloancount" --> On loan (<!-- TMPL_VAR NAME="onloancount" -->),<br /> <!-- /TMPL_IF -->
105                         <!-- TMPL_IF NAME="wthdrawncount" --> Withdrawn (<!-- TMPL_VAR NAME="wthdrawncount" -->),<br /> <!-- /TMPL_IF -->
106                         <!-- TMPL_IF NAME="itemlostcount" --> Lost (<!-- TMPL_VAR NAME="itemlostcount" -->)<br /><!-- /TMPL_IF -->
107                         <!-- TMPL_IF NAME="orderedcount" --> On order (<!-- TMPL_VAR NAME="orderedcount" -->)<!-- /TMPL_IF -->
108                     </span>
109                 </td>
110                 <td>
111                     <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Edit biblio</a>
112                 </td>
113             </tr>
114     <!-- /TMPL_LOOP -->
115     </table>
116 </div>
117 <!-- TMPL_ELSE -->
118     <b>No Result found in catalogue.</b>
119     <!-- TMPL_IF NAME="error" -->
120         Error: <span class="error"><!-- TMPL_VAR NAME="error" --></span>
121     <!-- /TMPL_IF -->
122 <!-- /TMPL_IF -->
123
124 <div id="searchresult-breeding">
125     <h2>Biblios in reservoir</h2>
126     <!-- TMPL_IF name="breeding_loop" -->
127         <table>
128             <tr>
129                 <th>Title</th>
130                 <th>ISBN</th>
131                 <th>coming from</th>
132                 <th>&nbsp;</th>
133                 <th>&nbsp;</th>
134             </tr>
135             <!-- TMPL_LOOP NAME="breeding_loop" -->
136             <!-- TMPL_IF NAME="toggle" --><tr><!-- TMPL_ELSE --><tr class="hilighted"><!-- /TMPL_IF -->
137                 <td><!-- TMPL_VAR NAME="title" -->
138                 <!-- TMPL_VAR NAME="author" --></td>
139                 <td><!-- TMPL_VAR NAME="isbn" --></td>
140                 <td><!-- TMPL_VAR NAME="file" --></td>
141                 <!-- TMPL_IF NAME="NOTMARC" -->
142                                     
143                 <!-- TMPL_ELSE -->
144                 <td><a href="addbiblio.pl?breedingid=<!-- TMPL_VAR NAME="id" -->">Add biblio</a></td>
145                 <!-- /TMPL_IF -->
146             </tr>
147             <!-- /TMPL_LOOP -->
148         </table>
149     <!-- TMPL_ELSE -->
150     <p>None</p>
151     <!-- /TMPL_IF -->
152 </div>
153 <script type="text/JavaScript">
154     document.search.q.focus();
155 </script>
156
157 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->