]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/serial/subscription/caption_and_pattern.tt2
Template Toolkit OPAC
[working/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>ID</th>
6                 <th>Type</th>
7                 <th>Pattern Code</th>
8                 <th>Create Date</th>
9                 <th>Active</th>
10                 <th>Remove</th>
11                 <th>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">(853) Basic</option>
22                         <option value="supplement">(854) Supplement</option>
23                         <option value="index">(855) Index</option>
24                     </select>
25                 </td>
26                 <td name="pattern_code">
27                     <input type="text" size="16" control="true" />
28                     <button>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>Save Changes</button>
41                 </td>
42             </tr>
43         </tbody>
44         <tfoot>
45             <tr>
46                 <td colspan="7" align="center">
47                     <button name="add">Add New</button>
48                     &nbsp;
49                     <button id="scaps_from_bib">
50                         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; Created by <span name="obj_create"></span><br />
65         &nbsp; Edited by <span name="obj_edit"></span><br />
66         <em class="hidden" name="obj_inactive">(Inactive)</em>
67     </div>
68     <div dojoType="dijit.Dialog" execute="cap_importer.import()"
69         jsId="scaps_from_bib_dialog">
70         <div>
71             <em>
72                 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             Import
78         </button>
79     </div>
80 </div>