]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/cat/bucket/record/t_view.tt2
b35a83b0cd372e0ff896e964d05bd2abf25f19f1
[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('Delete Selected Records from Catalog') %]" 
20     handler="deleteRecordsFromCatalog"></eg-grid-action>
21
22   <eg-grid-action handler="transfer_holds_to_marked"
23     label="[% l('Transfer Title Holds') %]"></eg-grid-action>
24
25   <eg-grid-action label="[% l('Merge Selected Records') %]" 
26     handler="openRecordMergeDialog"></eg-grid-action>
27
28   <eg-grid-action label="[% l('Export Records') %]" 
29     handler="openExportBucketDialog"></eg-grid-action>
30
31   <eg-grid-field path="id" required hidden></eg-grid-field>
32
33   <eg-grid-field label="[% l('Title') %]" path="title">
34     <a target="_self" href="[% ctx.base_path %]/staff/cat/catalog/record/{{item.id}}">
35       {{item.title}}
36     </a>
37   </eg-grid-field>
38
39
40 </eg-grid>