]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_item_status.tt2
8d279b30aecb9f26b7d5dd5be0a657df367f47c7
[Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_item_status.tt2
1 <!--
2 Template for printing copies from the Item Status page. Available
3 macros include:
4
5 copies - list; each entry is a fleshed, flattened copy record
6 with a variety of keys, including
7
8   barcode
9   call_number.record.simple_record.title (title)
10   call_number.label 
11   location.name
12
13 -->
14 <div>
15   <div>[% l('The following items have been examined:') %]</div>
16   <hr/>
17   <ol>
18     <li ng-repeat="copy in copies">
19       <div>[% l('Title: [_1] <br> Barcode: [_2]',
20         "{{copy['call_number.record.simple_record.title']}}",
21         '{{copy.barcode}}') %]</div>
22     </li>
23   </ol>
24   <hr/>
25   <div>{{current_location.shortname}} {{today | date:$root.egDateAndTimeFormat}}</div>
26 <br/>