Markup corrections to cataloging pages; Fixes for Bugs 2166 (" Book Jackets Not Showi...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / addbooks.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Cataloguing</title>
3 <!-- TMPL_INCLUDE NAME="greybox.inc" -->
4 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
5 <script type="text/javascript">
6         $(document).ready(function() {
7         $('#header_search').tabs();
8  });
9 </script>
10 </head>
11 <body>
12 <!-- TMPL_INCLUDE NAME="header.inc" -->
13 <!-- TMPL_INCLUDE NAME="cataloging-search.inc" -->
14
15 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; Cataloguing</div>
16
17 <div id="doc" class="yui-t7">
18    
19    <div id="bd">
20         <div id="yui-main">
21         
22 <!-- TMPL_INCLUDE NAME="cataloging-toolbar.inc" -->
23         
24         <!-- TMPL_IF name="noitemsfound" -->
25                 No results found
26         <!-- /TMPL_IF -->
27
28 <!-- display the search results -->
29
30 <!-- TMPL_IF NAME="total"-->
31 <!-- TMPL_VAR NAME="total"--> result(s) found in catalog,
32 <a href="#searchresult-breeding"><!-- TMPL_VAR NAME="breeding_count" --> result(s) found in reservoir</a>
33 <!-- TMPL_VAR name='pagination_bar'-->
34 <div class="searchresults">
35     <table>
36         <tr>
37             <th>Title</th>
38             <th>Location</th>
39             <th>preview</th>
40             <th>&nbsp;</th>
41             <th>&nbsp;</th>
42         </tr>
43     <!-- TMPL_LOOP NAME="resultsloop" -->
44         <!-- TMPL_IF name="even" -->
45             <tr class="highlight">
46         <!-- TMPL_ELSE -->
47             <tr>
48         <!-- /TMPL_IF -->
49             <td>
50                 <p>
51                     <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR name="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a>
52                 <!-- TMPL_VAR NAME="subtitle" --></p>
53                 <!-- TMPL_IF name="summary" -->
54                     <p><!-- TMPL_VAR name="summary" --></p>
55                 <!-- TMPL_ELSE -->
56                     <p>
57                         <!-- TMPL_IF NAME="author" -->
58                             <!-- TMPL_VAR NAME="author" -->
59                         <!-- TMPL_ELSE -->
60                             &nbsp;
61                         <!-- /TMPL_IF -->
62                         <!-- TMPL_IF name="publicationyear" --> - <!-- TMPL_VAR name="publicationyear" --><!-- /TMPL_IF -->
63                         <!-- TMPL_IF name="publishercode" -->- <!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF -->
64                         <!-- TMPL_IF name="place" --> ; <!-- TMPL_VAR name="place" --><!-- /TMPL_IF -->
65                         <!-- TMPL_IF name="pages" --> - <!-- TMPL_VAR name="pages" --><!-- /TMPL_IF -->
66                         <!-- TMPL_IF name="size" --> ; <!-- TMPL_VAR name="size" --><!-- /TMPL_IF -->
67                         <!-- TMPL_IF name="timestamp" --> <i>(modified on <!-- TMPL_VAR name="timestamp" -->)</i><!-- /TMPL_IF -->
68                     </p>
69                 <!-- /TMPL_IF -->
70                 </td>
71                 <td>
72                     <!-- TMPL_IF NAME="items_loop" -->
73                         <span class="available">
74                         <!-- TMPL_LOOP NAME="items_loop" -->
75                             <!-- TMPL_VAR NAME="count" --> <!-- TMPL_VAR NAME="branchname" -->
76                             <i>
77                         <!-- TMPL_IF name="location" --><!-- TMPL_VAR name="location" --><!-- /TMPL_IF -->
78                         <!-- TMPL_IF name="itemcallnumber" --><!-- TMPL_VAR name="itemcallnumber" --><!-- /TMPL_IF -->
79                             <!-- TMPL_IF name="classification" -->
80                             <a href="/cgi-bin/koha/catalogue/search.pl?q=callnum:<!-- TMPL_VAR NAME="classification" ESCAPE="URL" -->">
81                                 <!-- TMPL_VAR NAME="classification" -->
82                             </a>
83                         <!-- /TMPL_IF -->
84                         </i>
85                             <br />
86                         <!-- /TMPL_LOOP -->
87                         </span>
88                     <!-- /TMPL_IF -->
89                     <span class="unavailable">
90                         <!-- TMPL_IF NAME="onloancount" --> Checked out (<!-- TMPL_VAR NAME="onloancount" -->),<br /> <!-- /TMPL_IF -->
91                         <!-- TMPL_IF NAME="wthdrawncount" --> Withdrawn (<!-- TMPL_VAR NAME="wthdrawncount" -->),<br /> <!-- /TMPL_IF -->
92                         <!-- TMPL_IF NAME="itemlostcount" --> Lost (<!-- TMPL_VAR NAME="itemlostcount" -->)<br /><!-- /TMPL_IF -->
93                         <!-- TMPL_IF NAME="orderedcount" --> On order (<!-- TMPL_VAR NAME="orderedcount" -->)<!-- /TMPL_IF -->
94                     </span>
95                 </td>
96                                 <td> <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=<!-- TMPL_VAR NAME="biblionumber" -->" title="MARC" rel="gb_page_center[600,500]">MARC</a> | <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;id=<!-- TMPL_VAR NAME="biblionumber" -->" title="MARC" rel="gb_page_center[600,500]">Card</a>
97                 </td>
98                 <td><!-- TMPL_IF NAME="CAN_user_editcatalogue"--><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Edit biblio</a>
99                                         <!-- TMPL_ELSE --><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" class="disabled" onclick="return false;">Edit biblio</a>
100                                         <!-- /TMPL_IF -->
101                     
102                 </td>
103                 <td>
104                     <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Add holdings</a>
105                 </td>
106             </tr>
107     <!-- /TMPL_LOOP -->
108     </table>
109 </div>
110 <!-- TMPL_ELSE -->
111     <!-- TMPL_IF name='query'-->
112         <b>No results found</b>
113         <!-- TMPL_IF NAME="error" -->
114             Error: <span class="error"><!-- TMPL_VAR NAME="error" --></span>
115         <!-- /TMPL_IF -->
116     <!-- /TMPL_IF -->
117 <!-- /TMPL_IF -->
118
119 <!-- TMPL_IF name='query'-->
120 <div id="searchresult-breeding">
121     <h3>Biblios in reservoir</h3>
122     <!-- TMPL_IF name="breeding_loop" -->
123         <table>
124             <tr>
125                 <th>Title</th>
126                 <th>ISBN</th>
127                 <th>coming from</th>
128                 <th>preview</th>
129                 <th>&nbsp;</th>
130             </tr>
131             <!-- TMPL_LOOP NAME="breeding_loop" -->
132             <!-- TMPL_IF NAME="toggle" --><tr><!-- TMPL_ELSE --><tr class="hilighted"><!-- /TMPL_IF -->
133                 <td><!-- TMPL_VAR NAME="title" -->
134                 <!-- TMPL_VAR NAME="author" --></td>
135                 <td><!-- TMPL_VAR NAME="isbn" --></td>
136                 <td><!-- TMPL_VAR NAME="file" --></td>
137                 <td> <a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=<!-- TMPL_VAR NAME="id" -->" title="MARC" rel="gb_page_center[600,500]">MARC</a> | <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=<!-- TMPL_VAR NAME="id" -->" title="MARC" rel="gb_page_center[600,500]">Card</a>
138                                 </td>
139                 <td><!-- TMPL_IF NAME="NOTMARC" -->
140                 <!-- TMPL_ELSE -->
141                         <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?breedingid=<!-- TMPL_VAR NAME="id" -->" <!-- TMPL_UNLESS NAME="CAN_user_editcatalogue" --> class="disabled" onclick="return false;"<!-- /TMPL_UNLESS -->>Add biblio</a>
142                 <!-- /TMPL_IF --></td>
143             </tr>
144             <!-- /TMPL_LOOP -->
145         </table>
146     <!-- TMPL_ELSE -->
147     <p>None</p>
148     <!-- /TMPL_IF -->
149 </div>
150 <!-- /TMPL_IF -->
151 </div>
152 </div>
153 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->