]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/cat/bucket/share/t_bucket_info.tt2
LP#1721139: apply proper date format in certain places
[Evergreen.git] / Open-ILS / src / templates / staff / cat / bucket / share / t_bucket_info.tt2
1
2 <div ng-show="bucket()">
3   <strong>[% l('Bucket #{{bucket().id()}}: {{bucket().name()}}') %]</strong>
4   <span>
5     <ng-pluralize count="bucketSvc.currentBucket.items().length"
6       when="{'one': '[% l("1 item") %]', 'other': '[% l("{} items") %]'}">
7     </ng-pluralize>
8   </span>
9   <span> / [% l('Created {{bucket().create_time() | date:egDateAndTimeFormat}}') %]</span>
10   <span ng-show="bucket()._owner_name"> / 
11     {{bucket()._owner_name}} 
12     <a target="_self" href="./circ/patron/{{bucket().owner()}}/checkout">
13       ({{bucket()._owner_ident}})
14     </a>
15     @ {{bucket()._owner_ou}}
16   </span>
17   <span ng-show="bucket().description()"> / {{bucket().description()}}</span>
18 </div>
19
20 <div ng-show="!bucket()">
21   <strong>[% l('No Bucket Selected') %]</strong>
22 </div>
23