Lines 210-217
Link Here
|
210 |
<label for="onloan_indifferent">Ignore</label> |
210 |
<label for="onloan_indifferent">Ignore</label> |
211 |
<input type="radio" name="onloan" id="onloan_yes" value="IS NOT NULL" /> |
211 |
<input type="radio" name="onloan" id="onloan_yes" value="IS NOT NULL" /> |
212 |
<label for="onloan_yes">Checked out</label> |
212 |
<label for="onloan_yes">Checked out</label> |
213 |
<input type="radio" name="onloan" id="onloan_no" value="IS NULL" /> |
|
|
214 |
<label for="onloan_no">Available</label> |
215 |
</div> |
213 |
</div> |
216 |
</fieldset> |
214 |
</fieldset> |
217 |
<fieldset> |
215 |
<fieldset> |
Lines 336-342
Link Here
|
336 |
+ ' <th id="items_itemlost">' + _("Lost status") + '</th>' |
334 |
+ ' <th id="items_itemlost">' + _("Lost status") + '</th>' |
337 |
+ ' <th id="items_widthdrawn">' + _("Withdrawn status") + '</th>' |
335 |
+ ' <th id="items_widthdrawn">' + _("Withdrawn status") + '</th>' |
338 |
+ ' <th id="items_checkouts">' + _("Checkouts") + '</th>' |
336 |
+ ' <th id="items_checkouts">' + _("Checkouts") + '</th>' |
339 |
+ ' <th id="items_availability">' + _("Availability") + '</th>' |
|
|
340 |
+ ' <th id="items_date_due">' + _("Due date") + '</th>' |
337 |
+ ' <th id="items_date_due">' + _("Due date") + '</th>' |
341 |
+ ' <th id=""></th>' |
338 |
+ ' <th id=""></th>' |
342 |
+ ' </tr>' |
339 |
+ ' </tr>' |
Lines 494-500
Link Here
|
494 |
{ 'sName': 'itemlost' }, |
491 |
{ 'sName': 'itemlost' }, |
495 |
{ 'sName': 'withdrawn' }, |
492 |
{ 'sName': 'withdrawn' }, |
496 |
{ 'sName': 'issues' }, |
493 |
{ 'sName': 'issues' }, |
497 |
{ 'sName': 'availability' }, |
|
|
498 |
{ 'sName': 'date_due' }, |
494 |
{ 'sName': 'date_due' }, |
499 |
{ 'sName': 'actions', 'bSortable': false } |
495 |
{ 'sName': 'actions', 'bSortable': false } |
500 |
], |
496 |
], |
Lines 544-550
Link Here
|
544 |
[% END %] |
540 |
[% END %] |
545 |
{ 'type': 'text' }, |
541 |
{ 'type': 'text' }, |
546 |
{ 'type': 'text' }, |
542 |
{ 'type': 'text' }, |
547 |
{ 'type': 'text' }, |
|
|
548 |
null |
543 |
null |
549 |
] |
544 |
] |
550 |
}); |
545 |
}); |
551 |
- |
|
|