|
Lines 29-34
Link Here
|
| 29 |
<th id="[% tab | html %]_localuse" data-colname="[% tab | html %]_localuse">Local uses</th> |
29 |
<th id="[% tab | html %]_localuse" data-colname="[% tab | html %]_localuse">Local uses</th> |
| 30 |
<th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th> |
30 |
<th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th> |
| 31 |
<th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th> |
31 |
<th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th> |
|
|
32 |
<th id="[% tab | html %]_booksellerid" data-colname="[% tab | html %]_booksellerid">Source of acquisition</th> |
| 32 |
<th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th> |
33 |
<th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th> |
| 33 |
<th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th> |
34 |
<th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th> |
| 34 |
<th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th> |
35 |
<th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th> |
|
Lines 626-631
Link Here
|
| 626 |
return $date(row.last_checkout_date); |
627 |
return $date(row.last_checkout_date); |
| 627 |
} |
628 |
} |
| 628 |
}, |
629 |
}, |
|
|
630 |
{ |
| 631 |
data: "me.acquisition_source", |
| 632 |
className: "booksellerid", |
| 633 |
searchable: true, |
| 634 |
orderable: true, |
| 635 |
render: function (data, type, row, meta) { |
| 636 |
return escape_str(row.acquisition_source); |
| 637 |
} |
| 638 |
}, |
| 629 |
{ |
639 |
{ |
| 630 |
data: "me.external_id", |
640 |
data: "me.external_id", |
| 631 |
className: "", |
641 |
className: "", |
| 632 |
- |
|
|