]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/admin/serials/t_template_list.tt2
LP#1708291: web staff client serials module
[working/Evergreen.git] / Open-ILS / src / templates / staff / admin / serials / t_template_list.tt2
1 <eg-grid
2   id-field="id"
3   idl-class="act"
4   features="-sort,-multisort"
5   grid-controls="grid_controls"
6   persist-key="serials.copy_templates">
7
8   <eg-grid-menu-item handler="grid_actions.create_template" 
9     label="[% l('Create Template') %]"></eg-grid-menu-item>
10
11   <eg-grid-action handler="grid_actions.edit_template"
12     label="[% l('Edit Template') %]"
13     disabled="need_one_selected"></eg-grid-action>
14
15   <eg-grid-action handler="grid_actions.delete_template"
16     label="[% l('Delete Template') %]"></eg-grid-action>
17
18   <eg-grid-field label="[% l('Template ID') %]" path='id' required></eg-grid-field>
19
20   <eg-grid-field label="[% l('Template Name') %]" path='name'></eg-grid-field>
21
22   <eg-grid-field label="[% l('Create Date') %]"
23     path='create_date'></eg-grid-field>
24
25   <eg-grid-field label="[% l('Creator') %]"
26     path='creator.usrname'></eg-grid-field>
27
28   <eg-grid-field label="[% l('Edit Date') %]"
29     path='edit_date'></eg-grid-field>
30
31   <eg-grid-field label="[% l('Editor') %]"
32     path='editor.usrname'></eg-grid-field>
33
34   <eg-grid-field label="[% l('Owning Library') %]"
35     path='owning_lib.shortname'></eg-grid-field>
36
37   <eg-grid-field label="[% l('Circulating Library') %]"
38     path='circ_lib.shortname' hidden></eg-grid-field>
39
40   <eg-grid-field label="[% l('Status') %]"
41     path='status.name' hidden></eg-grid-field>
42
43   <eg-grid-field label="[% l('Circ Modifier') %]"
44     path='circ_modifier.code' hidden></eg-grid-field>
45
46   <eg-grid-field label="[% l('Location') %]"
47     path='location.name' hidden></eg-grid-field>
48
49   <eg-grid-field label="[% l('Floating') %]"
50     path='floating.name' hidden></eg-grid-field>
51
52   <eg-grid-field path='*' hidden></eg-grid-field>
53 </eg-grid>
54