]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/cat/bucket/record/t_view.tt2
LP1615805 No inputs after submit in patron search (AngularJS)
[working/Evergreen.git] / Open-ILS / src / templates / staff / cat / bucket / record / t_view.tt2
1 <eg-grid
2   ng-hide="forbidden"
3   id-field="id"
4   idl-class="rmsr"
5   auto-fields="true"
6   grid-controls="gridControls"
7   menu-label="[% l('Buckets') %]"
8   persist-key="cat.bucket.record.view">
9
10   [% INCLUDE 'staff/cat/bucket/record/t_grid_menu.tt2' %]
11
12   <!-- actions drop-down -->
13   <eg-grid-action label="[% l('Show Selected Records in Catalog') %]"
14     handler="showRecords"></eg-grid-action>
15
16   <eg-grid-action label="[% l('Remove Selected Records from Bucket') %]" 
17     handler="detachRecords"></eg-grid-action>
18
19   <eg-grid-action label="[% l('Move Selected Records to Pending Records') %]" 
20     handler="moveToPending"></eg-grid-action>
21
22   <eg-grid-action label="[% l('Delete Selected Records from Catalog') %]" 
23     handler="deleteRecordsFromCatalog"></eg-grid-action>
24
25   <eg-grid-action handler="transfer_holds_to_marked"
26     label="[% l('Transfer Title Holds') %]"></eg-grid-action>
27
28   <eg-grid-action label="[% l('Merge Selected Records') %]" 
29     disabled="need_multiple_selected"
30     handler="openRecordMergeDialog"></eg-grid-action>
31
32   <eg-grid-action label="[% l('Export Records') %]" 
33     handler="openExportBucketDialog"></eg-grid-action>
34
35   <eg-grid-field path="id" required hidden></eg-grid-field>
36
37   <eg-grid-field label="[% l('Title') %]" path="title">
38     <a href="/eg2/staff/catalog/record/{{item.id}}">
39       {{item.title}}
40     </a>
41   </eg-grid-field>
42
43   <eg-grid-field label="[% l('Deleted?') %]" path="biblio_record.deleted"></eg-grid-field>
44
45 </eg-grid>