|
Lines 28-33
Link Here
|
| 28 |
<th id="[% tab | html %]_renewals" data-colname="[% tab | html %]_renewals">Renewals</th> |
28 |
<th id="[% tab | html %]_renewals" data-colname="[% tab | html %]_renewals">Renewals</th> |
| 29 |
<th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th> |
29 |
<th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th> |
| 30 |
<th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th> |
30 |
<th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th> |
|
|
31 |
<th id="[% tab | html %]_booksellerid" data-colname="[% tab | html %]_booksellerid">Source of acquisition</th> |
| 31 |
<th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th> |
32 |
<th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th> |
| 32 |
<th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th> |
33 |
<th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th> |
| 33 |
<th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th> |
34 |
<th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th> |
|
Lines 596-601
Link Here
|
| 596 |
return $date(row.last_checkout_date); |
597 |
return $date(row.last_checkout_date); |
| 597 |
} |
598 |
} |
| 598 |
}, |
599 |
}, |
|
|
600 |
{ |
| 601 |
data: "me.acquisition_source", |
| 602 |
className: "booksellerid", |
| 603 |
searchable: true, |
| 604 |
orderable: true, |
| 605 |
render: function (data, type, row, meta) { |
| 606 |
return escape_str(row.acquisition_source); |
| 607 |
} |
| 608 |
}, |
| 599 |
{ |
609 |
{ |
| 600 |
data: "me.external_id", |
610 |
data: "me.external_id", |
| 601 |
className: "", |
611 |
className: "", |
| 602 |
- |
|
|