Lines 6-17
Link Here
|
6 |
var MSG_NO_TAG_SPECIFIED = _("No tag was specified."); |
6 |
var MSG_NO_TAG_SPECIFIED = _("No tag was specified."); |
7 |
var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?"); |
7 |
var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?"); |
8 |
var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to delete this list?"); |
8 |
var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to delete this list?"); |
9 |
$.tablesorter.addParser({ |
|
|
10 |
id: 'articles', |
11 |
is: function(s) {return false; }, |
12 |
format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); }, |
13 |
type: 'text' |
14 |
}); |
15 |
|
9 |
|
16 |
function holdSelections() { |
10 |
function holdSelections() { |
17 |
var checkedBoxes = $(":checkbox:checked"); |
11 |
var checkedBoxes = $(":checkbox:checked"); |
Lines 73-78
function tagAdded() {
Link Here
|
73 |
} |
67 |
} |
74 |
|
68 |
|
75 |
$(function() { |
69 |
$(function() { |
|
|
70 |
<!-- TMPL_IF name="opacbookbag" -->$(".addtocart").show();<!-- /TMPL_IF --> |
76 |
$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear All')+"<\/a>|"); |
71 |
$("span.clearall").html("<a id=\"CheckNone\" href=\"#\">"+_('Clear All')+"<\/a>|"); |
77 |
$("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select All')+"<\/a>"); |
72 |
$("span.checkall").html("<a id=\"CheckAll\" href=\"#\">"+_('Select All')+"<\/a>"); |
78 |
$("a.print").show(); |
73 |
$("a.print").show(); |
Lines 81-98
$(function() {
Link Here
|
81 |
holdSelections(); |
76 |
holdSelections(); |
82 |
return false; |
77 |
return false; |
83 |
});<!-- /TMPL_IF --> |
78 |
});<!-- /TMPL_IF --> |
84 |
$("#listcontents").tablesorter({ |
|
|
85 |
widgets : ['zebra'], |
86 |
<!-- TMPL_IF NAME="authorsort" --> |
87 |
sortList: [[2,0]], |
88 |
<!-- TMPL_ELSIF NAME="yearsort" --> |
89 |
sortList: [[3,1]], |
90 |
<!-- TMPL_ELSE --> |
91 |
sortList: [[1,0]], |
92 |
<!-- /TMPL_IF --> |
93 |
headers: { 0: { sorter: false },1:{sorter: 'articles'} |
94 |
} |
95 |
}); |
96 |
$("#CheckAll").click(function(){ |
79 |
$("#CheckAll").click(function(){ |
97 |
$(".checkboxed").checkCheckboxes(); |
80 |
$(".checkboxed").checkCheckboxes(); |
98 |
return false; |
81 |
return false; |
Lines 101-117
$(function() {
Link Here
|
101 |
$(".checkboxed").unCheckCheckboxes(); |
84 |
$(".checkboxed").unCheckCheckboxes(); |
102 |
return false; |
85 |
return false; |
103 |
}); |
86 |
}); |
104 |
<!-- TMPL_IF NAME="TagsEnabled" --> |
87 |
<!-- TMPL_IF NAME="TagsEnabled" --> |
105 |
$("#addtags").click(function(){ |
88 |
$("#addtags").html("<a id=\"tagsel_tag\" href=\"#\">"+_("Tag")+"<\/a> |"); |
106 |
tagSelected(); |
89 |
$(".tagbutton").click(KOHA.Tags.add_tag_button); |
107 |
return false; |
90 |
<!-- TMPL_IF NAME="TagsInputOnList" --> |
108 |
}); |
91 |
<!-- TMPL_IF NAME="loggedinusername" --> |
109 |
$("#addtags").html("<a id=\"tagsel_tag\" href=\"#\">"+_("Tag")+"<\/a> |"); |
92 |
$("#tagsel_tag").click(function(){ |
110 |
$("#tagsel_button").click(function(){ |
93 |
tagSelected(); |
111 |
tagAdded(); |
94 |
return false; |
112 |
return false; |
95 |
}); |
113 |
}); |
96 |
$("#tagsel_cancel").click(function(){ |
|
|
97 |
tagCanceled(); |
98 |
return false; |
99 |
}); |
100 |
$("#tagsel_button").click(function(){ |
101 |
tagAdded(); |
102 |
return false; |
103 |
}); |
104 |
<!-- TMPL_ELSE --> |
105 |
$("#tagsel_tag").click(function(){ |
106 |
window.location = "/cgi-bin/koha/opac-user.pl"; |
107 |
return false; |
108 |
}); |
109 |
<!-- /TMPL_IF --> |
110 |
<!-- /TMPL_IF --> |
114 |
<!-- /TMPL_IF --> |
111 |
<!-- /TMPL_IF --> |
|
|
112 |
<!-- TMPL_IF NAME="GoogleJackets" -->KOHA.Google.GetCoverFromIsbn();<!-- /TMPL_IF --> |
115 |
}); |
113 |
}); |
116 |
function Check(f) { |
114 |
function Check(f) { |
117 |
var _alertString=""; |
115 |
var _alertString=""; |
Lines 152-158
$(function() {
Link Here
|
152 |
<!-- TMPL_IF NAME="need_confirm" --> |
150 |
<!-- TMPL_IF NAME="need_confirm" --> |
153 |
<div class="dialog alert"> |
151 |
<div class="dialog alert"> |
154 |
The list <i><!-- TMPL_VAR NAME="need_confirm" --></i> is not empty. |
152 |
The list <i><!-- TMPL_VAR NAME="need_confirm" --></i> is not empty. |
155 |
<br />It has <b><!-- TMPL_VAR NAME="count" --></b> entries. |
153 |
<br />It has <b><!-- TMPL_VAR NAME="count" --></b> <!-- TMPL_IF NAME="single" -->entry<!-- TMPL_ELSE -->entries<!-- /TMPL_IF -->. |
156 |
<br />Use the "Confirm" button below to confirm deletion. |
154 |
<br />Use the "Confirm" button below to confirm deletion. |
157 |
</div> |
155 |
</div> |
158 |
<!-- /TMPL_IF --> |
156 |
<!-- /TMPL_IF --> |
Lines 180-186
$(function() {
Link Here
|
180 |
<!-- /TMPL_IF --> <!-- /paramsloop --> |
178 |
<!-- /TMPL_IF --> <!-- /paramsloop --> |
181 |
|
179 |
|
182 |
<div class="yui-g"> |
180 |
<div class="yui-g"> |
183 |
|
|
|
184 |
|
181 |
|
185 |
<!-- TMPL_IF NAME="viewshelf" --><!-- Viewing a particular shelf --> |
182 |
<!-- TMPL_IF NAME="viewshelf" --><!-- Viewing a particular shelf --> |
186 |
<h3><a href="/cgi-bin/koha/opac-shelves.pl">Lists</a> <img src="<!-- TMPL_VAR NAME="themelang" -->/../images/caret.gif" width="16" height="16" alt=">" border="0" /> <em><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></em></h3> |
183 |
<h3><a href="/cgi-bin/koha/opac-shelves.pl">Lists</a> <img src="<!-- TMPL_VAR NAME="themelang" -->/../images/caret.gif" width="16" height="16" alt=">" border="0" /> <em><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></em></h3> |
Lines 227-242
$(function() {
Link Here
|
227 |
<input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" /> |
224 |
<input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" /> |
228 |
<input type="hidden" name="modifyshelfcontents" value="1" /> |
225 |
<input type="hidden" name="modifyshelfcontents" value="1" /> |
229 |
<!-- /TMPL_IF --> |
226 |
<!-- /TMPL_IF --> |
230 |
<!-- TMPL_VAR name='pagination_bar'--> |
227 |
<div class="searchresults"> |
231 |
<table id="listcontents"> |
228 |
<table id="listcontents"> |
232 |
<thead><tr> |
|
|
233 |
<th> </th> |
234 |
<!-- TMPL_UNLESS NAME="item-level_itypes" --><th>Item Type</th><!-- /TMPL_UNLESS --> |
235 |
<th>Title</th> |
236 |
<th>Author</th> |
237 |
<th>Year</th> |
238 |
<th>Location</th> |
239 |
</tr></thead> |
240 |
<tbody> |
229 |
<tbody> |
241 |
<!-- TMPL_LOOP NAME="itemsloop" --> |
230 |
<!-- TMPL_LOOP NAME="itemsloop" --> |
242 |
<!-- TMPL_UNLESS NAME="__odd__" --> |
231 |
<!-- TMPL_UNLESS NAME="__odd__" --> |
Lines 254-288
$(function() {
Link Here
|
254 |
<!-- TMPL_VAR NAME="description" --> |
243 |
<!-- TMPL_VAR NAME="description" --> |
255 |
</td> |
244 |
</td> |
256 |
<!-- /TMPL_UNLESS --> |
245 |
<!-- /TMPL_UNLESS --> |
257 |
<td><!-- TMPL_IF NAME="BiblioDefaultViewmarc" --><a class="title" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" escape="html" --> <!-- TMPL_IF NAME="subtitle" --><!-- TMPL_LOOP NAME="subtitle" --><!-- TMPL_VAR NAME="subfield" --><!-- /TMPL_LOOP --><!-- /TMPL_IF --></a><!-- TMPL_ELSE --> |
246 |
<td> |
258 |
<!-- TMPL_IF NAME="BiblioDefaultViewisbd" --><a class="title" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" escape="html" --> <!-- TMPL_IF NAME="subtitle" --><!-- TMPL_LOOP NAME="subtitle" --><!-- TMPL_VAR NAME="subfield" --><!-- /TMPL_LOOP --><!-- /TMPL_IF --></a><!-- TMPL_ELSE --><a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="title" escape="html" --> <!-- TMPL_IF NAME="subtitle" --><!-- TMPL_LOOP NAME="subtitle" --><!-- TMPL_VAR NAME="subfield" --><!-- /TMPL_LOOP --><!-- /TMPL_IF --></a><!-- /TMPL_IF --><!-- /TMPL_IF --> |
247 |
<!-- TMPL_IF name="BiblioDefaultViewmarc" --><a class="title" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" title="View details for this title"> |
|
|
248 |
<!-- TMPL_ELSE --> |
249 |
<!-- TMPL_IF name="BiblioDefaultViewisbd" --><a class="title" href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" title="View details for this title"> |
250 |
<!-- TMPL_ELSE --><a class="title" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" title="View details for this title"> |
251 |
<!-- /TMPL_IF --> |
252 |
<!-- /TMPL_IF --> |
253 |
<!-- TMPL_IF NAME="title" --><!-- TMPL_VAR NAME="title" ESCAPE="html" --><!-- TMPL_ELSE -->No title<!-- /TMPL_IF --> <!-- TMPL_LOOP NAME="subtitle" --><!--TMPL_VAR Name="subfield"--><!--/TMPL_LOOP--></a> |
254 |
<!-- TMPL_IF NAME="author" -->by <a href="/cgi-bin/koha/opac-search.pl?q=au:<!-- TMPL_VAR NAME="author" ESCAPE="URL" -->" title="Search for works by this author" class="author"><!-- TMPL_VAR NAME="author" --></a> |
255 |
<!-- TMPL_ELSE --> |
256 |
<!-- /TMPL_IF --> |
257 |
<span class="results_summary"><span class="label">Publication:</span> |
258 |
<!-- TMPL_IF name="place" --><!-- TMPL_VAR name="place" --> <!-- /TMPL_IF --><!-- TMPL_IF name="publishercode" --><!-- TMPL_VAR name="publishercode" --><!-- /TMPL_IF --><!-- TMPL_IF name="publicationyear" --> <!-- TMPL_VAR name="publicationyear" --> |
259 |
<!-- TMPL_ELSE --><!-- TMPL_IF name="copyrightdate" --> <!-- TMPL_VAR name="copyrightdate" --><!-- /TMPL_IF --><!-- /TMPL_IF --> |
260 |
<!-- TMPL_IF name="pages" -->. <!-- TMPL_VAR name="pages" --><!-- /TMPL_IF --> |
261 |
<!-- TMPL_IF name="notes" -->, <!-- TMPL_VAR name="notes" --><!-- /TMPL_IF --> |
262 |
<!-- TMPL_IF name="size" --> <!-- TMPL_VAR name="size" --><!-- /TMPL_IF --> |
263 |
</span> |
264 |
<span class="results_summary"><span class="label">Holdings:</span><!-- TMPL_IF NAME="ITEM_RESULTS" --><!-- TMPL_LOOP NAME="ITEM_RESULTS" --> |
265 |
<!-- TMPL_VAR NAME="branchname" --><!-- TMPL_IF NAME="location" -->, <!-- TMPL_VAR NAME="location" --><!-- /TMPL_IF --> |
266 |
<!-- TMPL_IF name="itemcallnumber" --> |
267 |
(<!-- TMPL_VAR NAME="itemcallnumber" -->)<!-- TMPL_IF NAME="__LAST__" -->.<!-- TMPL_ELSE -->,<!-- /TMPL_IF --> |
268 |
<!-- /TMPL_IF --> |
269 |
<!-- /TMPL_LOOP --><!-- TMPL_ELSE -->This record has no items.<!-- /TMPL_IF --></span> |
270 |
|
271 |
<!-- TMPL_IF NAME="TagsEnabled" --> |
272 |
<!-- TMPL_IF NAME="TagsShowOnList" --> |
273 |
<!-- TMPL_IF NAME="TagLoop" --> |
274 |
<div class="results_summary"> |
275 |
<span class="label">Tags:</span> |
276 |
<ul style="display: inline; list-style: none;"><!-- TMPL_LOOP NAME="TagLoop" --><li style="display: inline; list-style: none;"><a href="/cgi-bin/koha/opac-search.pl?tag=<!-- TMPL_VAR NAME="term" ESCAPE="URL" -->&q=<!-- TMPL_VAR NAME="term" ESCAPE="URL" -->"><!-- TMPL_VAR NAME="term" --></a> <span class="weight">(<!-- TMPL_VAR NAME="weight_total" -->)</span></li> |
277 |
<!-- /TMPL_LOOP --> |
278 |
</ul> |
279 |
<!-- /TMPL_IF --> |
280 |
<!-- TMPL_IF NAME="TagsInputOnList" --> |
281 |
<!-- TMPL_IF NAME="loggedinusername" --> |
282 |
<form name="tagform<!-- TMPL_VAR NAME="biblionumber" -->" method="post" action="/cgi-bin/koha/opac-tags.pl"> |
283 |
<label for="newtag<!-- TMPL_VAR NAME="biblionumber" -->">New tag:</label> |
284 |
<input name="newtag<!-- TMPL_VAR NAME="biblionumber" -->" id="newtag<!-- TMPL_VAR NAME="biblionumber" -->" maxlength="100" /> |
285 |
<input name="tagbutton" class="tagbutton" title="<!-- TMPL_VAR NAME="biblionumber" -->" type="submit" value="Add" /> |
286 |
</form> |
287 |
<span id="newtag<!-- TMPL_VAR NAME="biblionumber" -->_status" class="tagstatus" style="display:none;"> |
288 |
Tag status here. |
289 |
</span> |
290 |
<!-- TMPL_ELSIF NAME="__first__" --><span class="tagstatus" id="login4tags">Log in to add tags.</span> |
291 |
<!-- /TMPL_IF --> |
292 |
<!-- /TMPL_IF --> |
293 |
<!-- TMPL_IF NAME="TagLoop" --> |
294 |
</div><!-- /TMPL_IF --> |
295 |
<!-- /TMPL_IF --> |
296 |
<!-- /TMPL_IF --> |
297 |
|
298 |
<span class="results_summary actions"><span class="label">Actions:</span> |
299 |
<!-- TMPL_IF name="RequestOnOpac" --> |
300 |
<!-- TMPL_UNLESS NAME="norequests" --> |
301 |
<!-- TMPL_IF NAME="opacuserlogin" --> |
302 |
<!-- TMPL_IF NAME="AllowOnShelfHolds" --> |
303 |
<a class="hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Place Hold</a><!-- add back when available 0 holds in queue--> |
304 |
<!-- TMPL_ELSE --> |
305 |
<!-- TMPL_IF NAME="itemsissued" --> |
306 |
<a class="hold" href="/cgi-bin/koha/opac-reserve.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Place Hold</a><!-- add back when available 0 holds in queue--> |
307 |
<!-- /TMPL_IF --> |
308 |
<!-- /TMPL_IF --> |
309 |
<!-- /TMPL_IF --> |
310 |
<!-- /TMPL_UNLESS --> |
311 |
<!-- /TMPL_IF --> |
312 |
|
313 |
<!-- TMPL_IF NAME="opacuserlogin" --><!-- TMPL_IF NAME="loggedinusername" --><!-- TMPL_IF NAME="virtualshelves" --><a class="addtolist" href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" onclick="Dopop('opac-addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->'); return false;">Save to another list</a> |
314 |
<!-- /TMPL_IF --><!-- /TMPL_IF --><!-- /TMPL_IF --> |
315 |
|
316 |
<!-- TMPL_IF NAME="opacbookbag" --><a class="addtocart" href="#" onclick="addRecord('<!-- TMPL_VAR NAME="biblionumber" -->'); return false;">Add to Cart</a><!-- tmpl_else -->nocart<!-- /TMPL_IF --> |
317 |
</span> |
318 |
|
319 |
|
320 |
|
259 |
<!-- COinS / OpenURL --> |
321 |
<!-- COinS / OpenURL --> |
260 |
<!-- COinS / OpenURL --><span class="Z3988" title="<!-- TMPL_VAR NAME="coins" -->"></span> |
322 |
<!-- COinS / OpenURL --><span class="Z3988" title="<!-- TMPL_VAR NAME="coins" -->"></span> |
261 |
<br/> |
323 |
<br/> |
262 |
<div id="newtag<!-- TMPL_VAR NAME="biblionumber">_status" class="tagstatus results_summary" style="display:none">Tag status here.</div> |
324 |
<div id="newtag<!-- TMPL_VAR NAME="biblionumber">_status" class="tagstatus results_summary" style="display:none">Tag status here.</div> |
263 |
</td> |
325 |
</td> |
264 |
<td><!-- TMPL_VAR NAME="author" --></td> |
326 |
<td> |
265 |
<td> |
327 |
<a class="p1" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"> |
266 |
<!-- TMPL_IF NAME="publicationyear" --> |
328 |
<!-- TMPL_IF NAME="OPACAmazonEnabled" --><!-- TMPL_IF NAME="OPACAmazonCoverImages" --><!-- TMPL_IF NAME="normalized_isbn" --><img src="http://images.amazon.com/images/P/<!-- TMPL_VAR NAME="normalized_isbn" -->.01.TZZZZZZZ.jpg" alt="" class="thumbnail" /><!-- TMPL_ELSE --><span class="no-image">No cover image available</span><!-- /TMPL_IF --><!-- /TMPL_IF --><!-- /TMPL_IF --> |
267 |
<!-- TMPL_VAR NAME="publicationyear" --> |
329 |
|
268 |
<!-- TMPL_ELSE --> |
330 |
<!-- TMPL_IF NAME="SyndeticsEnabled" --><!-- TMPL_IF NAME="SyndeticsCoverImages" --><!-- TMPL_IF NAME="using_https" --> |
269 |
<!-- TMPL_VAR NAME="copyrightdate" --> |
331 |
<img src="https://secure.syndetics.com/index.aspx?isbn=<!-- TMPL_VAR NAME="normalized_isbn" -->/SC.GIF&client=<!-- TMPL_VAR NAME="SyndeticsClientCode" -->&type=xw10&upc=<!-- TMPL_VAR NAME="normalized_upc" -->&oclc=<!-- TMPL_VAR NAME="normalized_oclc" -->" alt="" class="thumbnail" /> |
270 |
<!-- /TMPL_IF --> |
332 |
<!--TMPL_ELSE --> |
271 |
</td> |
333 |
<img src="http://www.syndetics.com/index.aspx?isbn=<!-- TMPL_VAR NAME="normalized_isbn" -->/SC.GIF&client=<!-- TMPL_VAR NAME="SyndeticsClientCode" -->&type=xw10&upc=<!-- TMPL_VAR NAME="normalized_upc" -->&oclc=<!-- TMPL_VAR NAME="normalized_oclc" -->" alt="" class="thumbnail" /><!-- /TMPL_IF --><!-- /TMPL_IF --><!-- /TMPL_IF --> |
272 |
<td> |
334 |
|
273 |
<!-- TMPL_IF NAME="ITEM_RESULTS" --><!-- TMPL_LOOP NAME="ITEM_RESULTS" --> |
335 |
<!-- TMPL_IF NAME="GoogleJackets" --><!-- TMPL_IF NAME="normalized_isbn" --><div style="block" title="<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->" class="<!-- TMPL_VAR name="normalized_isbn" -->" id="gbs-thumbnail<!--TMPL_VAR NAME="__counter__"-->"></div><!-- TMPL_ELSE --><span class="no-image">No cover image available</span><!-- /TMPL_IF --><!-- /TMPL_IF --> |
274 |
<p> |
336 |
</a> |
275 |
<!-- TMPL_VAR NAME="branchname" --><!-- TMPL_IF NAME="location" -->, <!-- TMPL_VAR NAME="location" --><!-- /TMPL_IF --> |
337 |
<!-- TMPL_IF NAME="BakerTaylorEnabled" --><!-- TMPL_IF NAME="normalized_isbn" --><a href="https://<!-- TMPL_VAR name="BakerTaylorBookstoreURL" ESCAPE="HTML" --><!-- TMPL_VAR name="normalized_isbn" -->"><img alt="See Baker & Taylor" src="<!-- TMPL_VAR name="BakerTaylorImageURL" ESCAPE="HTML" --><!-- TMPL_VAR name="normalized_isbn" -->" /></a><!-- TMPL_ELSE --><span class="no-image">No cover image available</span><!-- /TMPL_IF --><!-- /TMPL_IF --> |
276 |
<!-- TMPL_IF name="itemcallnumber" --> |
338 |
</td> |
277 |
(<!-- TMPL_VAR NAME="itemcallnumber" -->) |
|
|
278 |
<!-- /TMPL_IF --> |
279 |
</p> |
280 |
<!-- /TMPL_LOOP --><!-- TMPL_ELSE -->This record has no items.<!-- /TMPL_IF --> |
281 |
</td> |
282 |
</tr> |
339 |
</tr> |
283 |
<!-- /TMPL_LOOP --><!-- /itemsloop --> |
340 |
<!-- /TMPL_LOOP --><!-- /itemsloop --> |
284 |
</tbody> |
341 |
</tbody> |
285 |
</table> |
342 |
</table> |
|
|
343 |
</div> |
344 |
<!-- TMPL_IF NAME="pagination_bar" --><div class="pages"><!-- TMPL_VAR name="pagination_bar"--></div><!-- /TMPL_IF --> |
286 |
<!-- TMPL_ELSE --> |
345 |
<!-- TMPL_ELSE --> |
287 |
<div class="dialog message">This List is empty. You can add to your lists from the results of any <a href="opac-main.pl">search</a>!</div> |
346 |
<div class="dialog message">This List is empty. You can add to your lists from the results of any <a href="opac-main.pl">search</a>!</div> |
288 |
<!-- /TMPL_IF --><!-- /itemsloop --> |
347 |
<!-- /TMPL_IF --><!-- /itemsloop --> |
Lines 342-355
$(function() {
Link Here
|
342 |
<h2>Lists</h2> |
401 |
<h2>Lists</h2> |
343 |
<ul class="link-tabs"> |
402 |
<ul class="link-tabs"> |
344 |
<!-- TMPL_IF NAME="showprivateshelves" --> |
403 |
<!-- TMPL_IF NAME="showprivateshelves" --> |
345 |
<li id="privateshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your Lists</a></li> |
404 |
<li id="privateshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your private lists</a></li> |
346 |
<!-- TMPL_ELSE --> |
405 |
<!-- TMPL_ELSE --> |
347 |
<li id="privateshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your Lists</a></li> |
406 |
<li id="privateshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves">Your private lists</a></li> |
348 |
<!-- /TMPL_IF --> |
407 |
<!-- /TMPL_IF --> |
349 |
<!-- TMPL_IF NAME="showpublicshelves" --> |
408 |
<!-- TMPL_IF NAME="showpublicshelves" --> |
350 |
<li id="publicshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public Lists</a></li> |
409 |
<li id="publicshelves_tab" class="on"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public lists</a></li> |
351 |
<!-- TMPL_ELSE --> |
410 |
<!-- TMPL_ELSE --> |
352 |
<li id="publicshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public Lists</a></li> |
411 |
<li id="publicshelves_tab" class="off"><a href="/cgi-bin/koha/opac-shelves.pl?display=publicshelves">Public lists</a></li> |
353 |
<!-- /TMPL_IF --> |
412 |
<!-- /TMPL_IF --> |
354 |
</ul> |
413 |
</ul> |
355 |
|
414 |
|
Lines 363-374
$(function() {
Link Here
|
363 |
<div id="toolbar"><a class="newshelf" href="/cgi-bin/koha/opac-shelves.pl?shelves=1">New List</a></div> |
422 |
<div id="toolbar"><a class="newshelf" href="/cgi-bin/koha/opac-shelves.pl?shelves=1">New List</a></div> |
364 |
<!-- TMPL_IF NAME="showprivateshelves" --> |
423 |
<!-- TMPL_IF NAME="showprivateshelves" --> |
365 |
<!-- TMPL_IF NAME="shelveslooppriv" --> |
424 |
<!-- TMPL_IF NAME="shelveslooppriv" --> |
366 |
<!-- TMPL_VAR name='pagination_bar'--> |
|
|
367 |
<table> |
425 |
<table> |
368 |
<tr> |
426 |
<tr> |
369 |
<th>List Name</th> |
427 |
<th>List Name</th> |
370 |
<th>Contents</th> |
428 |
<th>Contents</th> |
371 |
<th>Sort by</th> |
|
|
372 |
<th>Type</th> |
429 |
<th>Type</th> |
373 |
<th> </th> |
430 |
<th> </th> |
374 |
</tr> |
431 |
</tr> |
Lines 379-387
$(function() {
Link Here
|
379 |
<tr> |
436 |
<tr> |
380 |
<!-- /TMPL_UNLESS --> |
437 |
<!-- /TMPL_UNLESS --> |
381 |
<td><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves&viewshelf=<!-- TMPL_VAR NAME="shelf" -->&sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></a></td> |
438 |
<td><a href="/cgi-bin/koha/opac-shelves.pl?display=privateshelves&viewshelf=<!-- TMPL_VAR NAME="shelf" -->&sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></a></td> |
382 |
<td><!-- TMPL_VAR NAME="count" --> item(s)</td> |
439 |
<td><!-- TMPL_IF NAME="count" --><!-- TMPL_VAR NAME="count" --> <!-- TMPL_IF NAME="single" -->item<!-- TMPL_ELSE -->items<!-- /TMPL_IF --><!-- TMPL_ELSE -->Empty<!-- /TMPL_IF --></td> |
383 |
<td><!-- TMPL_IF NAME="authorsort" -->Author<!-- TMPL_ELSIF NAME="yearsort" -->Year<!-- TMPL_ELSE -->Title<!-- /TMPL_IF --> |
|
|
384 |
</td> |
385 |
<td> |
440 |
<td> |
386 |
<!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF --> |
441 |
<!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF --> |
387 |
<!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF --> |
442 |
<!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF --> |
Lines 411-416
$(function() {
Link Here
|
411 |
</tr> |
466 |
</tr> |
412 |
<!-- /TMPL_LOOP --> |
467 |
<!-- /TMPL_LOOP --> |
413 |
</table> |
468 |
</table> |
|
|
469 |
<div class="pages"><!-- TMPL_VAR name="pagination_bar"--></div> |
414 |
<!-- TMPL_ELSE --> |
470 |
<!-- TMPL_ELSE --> |
415 |
No Private Lists. |
471 |
No Private Lists. |
416 |
<!-- /TMPL_IF --><!-- /shelveslooppriv --> |
472 |
<!-- /TMPL_IF --><!-- /shelveslooppriv --> |
Lines 433-444
$(function() {
Link Here
|
433 |
<div><a href="/cgi-bin/koha/opac-user.pl">Log in</a> to create new Lists.</div> |
489 |
<div><a href="/cgi-bin/koha/opac-user.pl">Log in</a> to create new Lists.</div> |
434 |
<!-- /TMPL_IF --> |
490 |
<!-- /TMPL_IF --> |
435 |
<!-- TMPL_IF NAME="shelvesloop" --> |
491 |
<!-- TMPL_IF NAME="shelvesloop" --> |
436 |
<!-- TMPL_VAR name='pagination_bar'--> |
|
|
437 |
<table> |
492 |
<table> |
438 |
<tr> |
493 |
<tr> |
439 |
<th>List Name</th> |
494 |
<th>List Name</th> |
440 |
<th>Contents</th> |
495 |
<th>Contents</th> |
441 |
<th>Sort by</th> |
|
|
442 |
<th>Type</th><th> </th> |
496 |
<th>Type</th><th> </th> |
443 |
</tr> |
497 |
</tr> |
444 |
<!-- TMPL_LOOP NAME="shelvesloop" --> |
498 |
<!-- TMPL_LOOP NAME="shelvesloop" --> |
Lines 448-456
$(function() {
Link Here
|
448 |
<tr> |
502 |
<tr> |
449 |
<!-- /TMPL_UNLESS --> |
503 |
<!-- /TMPL_UNLESS --> |
450 |
<td><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=<!-- TMPL_VAR NAME="shelf" -->&sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></a></td> |
504 |
<td><a href="/cgi-bin/koha/opac-shelves.pl?viewshelf=<!-- TMPL_VAR NAME="shelf" -->&sortfield=<!-- TMPL_VAR NAME="sortfield" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html" --></a></td> |
451 |
<td><!-- TMPL_VAR NAME="count" --> item(s)</td> |
505 |
<td><!-- TMPL_VAR NAME="count" --> <!-- TMPL_IF NAME="single" -->item<!-- TMPL_ELSE -->item(s)<!-- /TMPL_IF --></td> |
452 |
<td><!-- TMPL_IF NAME="authorsort" -->Author<!-- TMPL_ELSIF NAME="yearsort" -->Year<!-- TMPL_ELSE -->Title<!-- /TMPL_IF --> |
|
|
453 |
</td> |
454 |
<td> |
506 |
<td> |
455 |
<!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF --> |
507 |
<!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF --> |
456 |
<!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF --> |
508 |
<!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF --> |
Lines 478-483
$(function() {
Link Here
|
478 |
</tr> |
530 |
</tr> |
479 |
<!-- /TMPL_LOOP --><!-- /shelvesloop --> |
531 |
<!-- /TMPL_LOOP --><!-- /shelvesloop --> |
480 |
</table> |
532 |
</table> |
|
|
533 |
<!-- TMPL_IF NAME="pagination_bar" --><div class="pages"><!-- TMPL_VAR name="pagination_bar"--></div><!-- /TMPL_IF --> |
481 |
<!-- TMPL_ELSE --><!-- /shelvesloop --> |
534 |
<!-- TMPL_ELSE --><!-- /shelvesloop --> |
482 |
<!-- TMPL_IF NAME="showpublicshelves" -->No Public Lists.<!-- /TMPL_IF --> |
535 |
<!-- TMPL_IF NAME="showpublicshelves" -->No Public Lists.<!-- /TMPL_IF --> |
483 |
<!-- /TMPL_IF --><!-- /shelvesloop --> |
536 |
<!-- /TMPL_IF --><!-- /shelvesloop --> |