Lines 198-207
$(document).ready(function() {
Link Here
|
198 |
<table id="biblios" class="records"> |
198 |
<table id="biblios" class="records"> |
199 |
<thead> |
199 |
<thead> |
200 |
<tr> |
200 |
<tr> |
201 |
<th></th> |
201 |
<th> </th> |
202 |
<th>Biblionumber</th> |
202 |
<th>Biblionumber</th> |
203 |
<th>Title</th> |
203 |
<th>Title</th> |
204 |
<th>Preview</th> |
204 |
<th> </th> |
205 |
</tr> |
205 |
</tr> |
206 |
</thead> |
206 |
</thead> |
207 |
<tbody> |
207 |
<tbody> |
Lines 210-216
$(document).ready(function() {
Link Here
|
210 |
<td><input type="checkbox" name="record_id" value="[% biblio.biblionumber %]" data-items="[% biblio.itemnumbers.size %]" data-issues="[% biblio.issues_count %]" data-reserves="[% biblio.reserves.size %]" /></td> |
210 |
<td><input type="checkbox" name="record_id" value="[% biblio.biblionumber %]" data-items="[% biblio.itemnumbers.size %]" data-issues="[% biblio.issues_count %]" data-reserves="[% biblio.reserves.size %]" /></td> |
211 |
<td>[% biblio.biblionumber %]</td> |
211 |
<td>[% biblio.biblionumber %]</td> |
212 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber %]">[% biblio.title %]</a></td> |
212 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber %]">[% biblio.title %]</a></td> |
213 |
<td><a href="/cgi-bin/koha/svc/records/preview?record_type=biblio&record_id=[% biblio.biblionumber %]&mmtid=[% mmtid %]" class="previewMARC" data-record_type="biblio" data-record_id="[% biblio.biblionumber %]" data-mmtid="[% mmtid %]" title="Preview MARC" >Preview MARC</a> |
213 |
<td class="actions"><a href="/cgi-bin/koha/svc/records/preview?record_type=biblio&record_id=[% biblio.biblionumber %]&mmtid=[% mmtid %]" class="previewMARC btn btn-mini" data-record_type="biblio" data-record_id="[% biblio.biblionumber %]" data-mmtid="[% mmtid %]" title="Preview MARC"><i class="fa fa-eye"></i> Show MARC</a> |
214 |
</tr> |
214 |
</tr> |
215 |
[% END %] |
215 |
[% END %] |
216 |
</tbody> |
216 |
</tbody> |
217 |
- |
|
|