]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/conify/global/config/circ_matrix_matchpoint.tt2
Merge branch 'master' of git.evergreen-ils.org:Evergreen-DocBook into doc_consolidati...
[Evergreen.git] / Open-ILS / src / templates / conify / global / config / circ_matrix_matchpoint.tt2
1 [% ctx.page_title = 'Circulation Policy Configuration' %]
2 [% WRAPPER base.tt2 %]
3 <script type="text/javascript" src='[% ctx.media_prefix %]/js/ui/default/conify/global/config/circ_matrix_matchpoint.js'> </script>
4 <div dojoType="dijit.layout.ContentPane" layoutAlign="top" class='oils-header-panel'>
5     <div>Circulation Policy Configuration</div>
6     <div><button dojoType='dijit.form.Button' onClick='cmGrid.showCreatePane()'>New</button></div>
7 </div>
8 <div dojoType="dijit.layout.ContentPane" layoutAlign="client">
9     <table  jsId="cmGrid"
10             style="height: 600px;"
11             dojoType="openils.widget.AutoGrid"
12             fieldOrder="['id', 'active', 'grp', 'org_unit', 'copy_circ_lib', 'copy_owning_lib', 'user_home_ou', 'is_renewal', 'juvenile_flag', 'circ_modifier', 'marc_type', 'marc_form', 'marc_bib_level', 'marc_vr_format', 'ref_flag', 'usr_age_lower_bound', 'usr_age_upper_bound', 'item_age', 'circulate', 'duration_rule', 'renewals', 'hard_due_date', 'recurring_fine_rule', 'grace_period', 'max_fine_rule', 'available_copy_hold_ratio', 'total_copy_hold_ratio', 'script_test']"
13             defaultCellWidth='"auto"'
14             query="{id: '*'}"
15             fmClass='ccmm'
16             editStyle='pane'
17             editOnEnter='true'
18             showColumnPicker='true'
19             columnPersistKey='"conify.config.circ_matrix_matchpoint"'>
20             <thead>
21                 <tr>
22                     <th field="hard_due_date" formatter="format_hard_due_date">
23                     </th>
24                 </tr>
25             </thead>
26     </table>
27 </div>
28
29 <div class='hidden'>
30     <div id='limit-set-editor' style='border:1px solid #aaa'>
31         <h3>Linked Limit Sets</h3>
32         <table class='oils-generic-table'>
33             <tbody>
34                 <tr>
35                     <th>Name</th>
36                     <th>Fallthrough</th>
37                     <th>Active</th>
38                     <th>Remove</th>
39                 </tr>
40             </tbody>
41             <tbody name='limit-set-entry-tbody'>
42                 <tr name='limit-set-entry-row'>
43                     <td name='limit-set'></td>
44                     <td><input type="checkbox" name="limit-set-fallthrough"/></td>
45                     <td><input type="checkbox" name="limit-set-active"/></td>
46                     <td><a name='remove-limit-set' href='javascript:void(0);'>Remove</a></td>
47                 </tr>
48             </tbody>
49             <tbody name='limit-set-entry-new'>
50                 <tr>
51                     <td><div name='limit-set-selector'></div></td>
52                     <td colspan="3"><a href='javascript:void(0);' name='add-limit-set'>Add</a></td>
53                 </tr>
54             </tbody>
55         </table>
56     </div>
57 </div>
58
59
60 <div class='hidden'><div dojoType='openils.widget.ProgressDialog' jsId='progressDialog'></div></div>
61
62 [% END %]
63