]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/serial/subscription/caption_and_pattern.tt2
I18N: Make everything in tt2 files translatable.
[Evergreen.git] / Open-ILS / src / templates / serial / subscription / caption_and_pattern.tt2
1 <div dojoType="dijit.layout.ContentPane" layout="top">
2     <table id="scap_editor" class="hidden">
3         <thead>
4             <tr>
5                 <th>[% l('ID') %]</th>
6                 <th>[% l('Type') %]</th>
7                 <th>[% l('Pattern Code') %]</th>
8                 <th>[% l('Create Date') %]</th>
9                 <th>[% l('Active') %]</th>
10                 <th>[% l('Remove') %]</th>
11                 <th>[% l('Save Changes') %]</th>
12             </tr>
13         </thead>
14         <tbody>
15             <tr>
16                 <td name="id">
17                     <span control="true"></span>
18                 </td>
19                 <td name="type">
20                     <select control="true">
21                         <option value="basic">[% l('(853) Basic') %]</option>
22                         <option value="supplement">[% l('(854) Supplement') %]</option>
23                         <option value="index">[% l('(855) Index') %]</option>
24                     </select>
25                 </td>
26                 <td name="pattern_code">
27                     <input type="text" size="16" control="true" />
28                     <button>[% l('Wizard ...') %]</button>
29                 </td>
30                 <td name="create_date">
31                     <span control="true"></span>
32                 </td>
33                 <td name="active">
34                     <input type="checkbox" control="true" checked="checked" />
35                 </td>
36                 <td name="remover">
37                     <button>X</button>
38                 </td>
39                 <td name="save">
40                     <button>[% l('Save Changes') %]</button>
41                 </td>
42             </tr>
43         </tbody>
44         <tfoot>
45             <tr>
46                 <td colspan="7" align="center">
47                     <button name="add">[% l('Add New') %]</button>
48                     &nbsp;
49                     <button id="scaps_from_bib">
50                         [% l('Import From Bibliographic or Legacy Serial Records') %]
51                     </button>
52                 </td>
53             </tr>
54         </tfoot>
55     </table>
56 </div>
57 <div class="hidden">
58     <div id="record_template" style="padding-bottom: 0.5em;">
59         <input type="checkbox" />&nbsp; <span name="obj_class"></span> record
60         #<span name="obj_id"></span>
61         <span name="obj_owner_container" class="hidden">
62             (<span name="obj_owner"></span>)
63         </span><br />
64         &nbsp; [% l('Created by [_1]', '<span name="obj_create"></span>') %]<br />
65         &nbsp; [% l('Edited by [_1]', '<span name="obj_edit"></span>') %]<br />
66         <em class="hidden" name="obj_inactive">[% l('(Inactive)') %]</em>
67     </div>
68     <div dojoType="dijit.Dialog" execute="cap_importer.import()"
69         jsId="scaps_from_bib_dialog">
70         <div>
71             <em>
72                 [% l('Select records from which to import caption and pattern fields.') %]
73             </em>
74         </div>
75         <div id="record_holder" style="padding: 1em 0;"></div>
76         <button dojoType="dijit.form.Button" type="submit">
77             [% l('Import') %]
78         </button>
79     </div>
80 </div>