Bug 7125: make MARC framework tag form not suggest that one can change the form
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / marctagstructure.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Administration &rsaquo;
3 [% IF ( add_form ) %]MARC frameworks &rsaquo; [% action %] [% searchfield %][% END %]
4 [% IF ( delete_confirm ) %]MARC frameworks &rsaquo; Confirm deletion of tag '[% searchfield %]'[% END %]
5 [% IF ( delete_confirmed ) %]MARC frameworks &rsaquo;  Data deleted[% END %]
6 [% IF ( else ) %]MARC frameworks[% END %]</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
9 [% INCLUDE 'datatables.inc' %]
10
11 <script type="text/javascript">
12 //<![CDATA[
13
14 $(document).ready(function() {
15     $("#table_marctagstructure").dataTable($.extend(true, {}, dataTablesDefaults, {
16         "aoColumnDefs": [
17             { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
18         ],
19         "sPaginationType": "four_button"
20     }));
21 });
22
23 //]]>
24 </script>
25 </head>
26 <body id="admin_marctagstructure" class="admin">
27 [% INCLUDE 'header.inc' %]
28 [% INCLUDE 'cat-search.inc' %]
29
30 <div id="breadcrumbs">
31          <a href="/cgi-bin/koha/mainpage.pl">Home</a>
32 &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
33 &rsaquo; <a href="/cgi-bin/koha/admin/biblio_framework.pl">MARC frameworks</a>
34 [% IF ( add_form ) %]
35 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% frameworkcode %]">[% frameworktext %] ([% frameworkcode %])</a>
36 &rsaquo; [% action %] [% searchfield %]
37 [% ELSIF ( else ) %]
38 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% frameworkcode %]">[% IF ( frameworkcode ) %][% frameworktext %] ([% frameworkcode %])[% ELSE %]Default MARC framework[% END %]</a>
39 [% ELSIF ( delete_confirm ) %]
40 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% frameworkcode %]">[% frameworktext %] ([% frameworkcode %])</a>
41 &rsaquo; Confirm deletion of tag '[% searchfield %]'
42 [% ELSIF ( delete_confirmed ) %]
43 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% frameworkcode %]">[% frameworktext %] ([% frameworkcode %])</a>
44 &rsaquo; Data deleted
45 [% END %]
46 </div>
47
48 <div id="doc3" class="yui-t2">
49   <div id="bd">
50     <div id="yui-main">
51       <div class="yui-b">
52
53 [% IF ( else ) %]
54 <div id="toolbar" class="btn-toolbar">
55     <a class="btn btn-small" id="addtag" href="/cgi-bin/koha/admin/marctagstructure.pl?op=add_form&amp;frameworkcode=[% frameworkcode %]"><i class="icon-plus"></i> New tag</a>
56 </div>[% END %]
57
58 <h1>MARC Framework for [% IF ( frameworkcode ) %][% frameworktext %] ([% frameworkcode %])[% ELSE %]default MARC framework[% END %]</h1>
59
60 [% IF ( add_form ) %]
61
62     <form action="[% script_name %]" name="Aform" method="post" class="validated">
63         
64       <fieldset class="rows"><legend>[% IF ( use_heading_flags_p ) %][% IF ( heading_modify_tag_p ) %]Modify tag <input type="hidden" name="modif" value="1" />[% searchfield %][% END %][% IF ( heading_add_tag_p ) %]Add tag[% END %][% ELSE %][% action %][% END %]</legend>  <input type="hidden" name="op" value="add_validate" />
65         <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" />
66
67         <ol>
68             <li>
69                 [% IF ( heading_modify_tag_p ) %]
70                     <input type="hidden" name="tagfield" value="[% searchfield %]" />
71                     <span class="label">Tag:</span>
72                     [% searchfield %]
73                 [% ELSE %]
74                     <label for="tagfield" class="required">Tag: </label>
75                     <input id="tagfield" type="text" name="tagfield" value="[% searchfield %]" maxlength="3" size="3" required="required" class="required" />
76                     <span class="required">Required</span>
77                 [% END %]
78             </li>
79     <li><label for="liblibrarian">Label for lib: </label><input type="text" id="liblibrarian" name="liblibrarian" value="[% liblibrarian |html %]" size="40" maxlength="100" /></li>
80     <li><label for="libopac">Label for opac: </label><input type="text" id="libopac" name="libopac" value="[% libopac |html %]" size="40" maxlength="100" /></li>
81     <li><label for="repeatable">Repeatable: </label>
82         [% IF ( repeatable ) %]
83             <input type="checkbox" name="repeatable" id="repeatable" value="1" checked="checked" />
84         [% ELSE %]
85             <input type="checkbox" name="repeatable" id="repeatable" value="1" />
86         [% END %]
87     </li>
88     <li><label for="mandatory">Mandatory: </label>
89         [% IF ( mandatory ) %]
90             <input type="checkbox" name="mandatory" id="mandatory" value="1" checked="checked" />
91         [% ELSE %]
92             <input type="checkbox" name="mandatory" id="mandatory" value="1" />
93         [% END %]
94     </li>
95     <li><label for="authorised_value">Authorized value: </label>[% authorised_value %] (if you select a value here, the indicators will be limited to the authorized value list)</li>
96 </ol></fieldset> 
97     <fieldset class="action">
98         <input type="submit" value="Save changes" />
99         <a class="cancel" href="[% script_name %]?frameworkcode=[% frameworkcode %]">Cancel</a>
100     </fieldset>
101     </form>
102 [% END %]
103
104
105 [% IF ( delete_confirm ) %]
106
107 <div class="dialog alert"><h3>Confirm deletion of tag <span class="ex">'[% searchfield %]'</span>?</h3>
108     <p>Tag: [% searchfield %]</p>
109     <p>Description: [% liblibrarian %]</p>
110     <form action="[% script_name %]" method="post">
111         <input type="hidden" name="op" value="delete_confirmed" />
112         <input type="hidden" name="searchfield" value="[% searchfield %]" /><input type="hidden" name="frameworkcode" value="[% frameworkcode %]" />
113         <input type="submit" class="approve" value="Yes, Delete this Tag" /></form>
114         
115         <form action="[% script_name %]" method="get"><input type="hidden" name="frameworkcode" value="[% frameworkcode %]" /><input type="submit" value="No, Do Not Delete" class="deny" /></form></div>
116 [% END %]
117
118 [% IF ( delete_confirmed ) %]
119
120     <div class="dialog message"><h3>Tag deleted</h3>
121     <form action="[% script_name %]" method="post"><input type="hidden" name="frameworkcode" value="[% frameworkcode %]" />
122     <input type="submit" value="OK" class="approve" />
123     </form></div>
124 [% END %]
125 [% IF ( framework_create ) %]
126
127     <form action="[% script_name %]" method="post">
128         <input type="hidden" name="op" value="framework_create_confirm" />
129         <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" />
130         Create framework for [% frameworkcode %] ([% frameworktext %]) using
131         <select name="existingframeworkcode">
132             <option value="">Default</option>
133         [% FOREACH existingframeworkloo IN existingframeworkloop %]
134             <option value="[% existingframeworkloo.value %]">[% existingframeworkloo.frameworktext %]</option>
135         [% END %]
136         </select>
137         <input type="submit" value="OK" />
138     </form>
139 [% END %]
140
141
142 [% IF ( else ) %]
143 <form name="f" action="[% script_name %]" method="post">
144 <fieldset style="padding:.5em;">
145         <label for="searchfield"><strong>Search for tag:</strong> </label>
146         <input type="text" name="searchfield" id="searchfield" size="4" value="[% searchfield %]" />
147
148 <label for="frameworkcode"><strong>In framework:</strong> </label>
149         <select id="frameworkcode" name="frameworkcode">
150             <option value="">Default</option>
151             [% FOREACH frameworkloo IN frameworkloop %]
152             [% IF ( frameworkloo.selected ) %]
153                 <option value="[% frameworkloo.value %]" selected="selected">[% frameworkloo.frameworktext %]</option>
154                 [% ELSE %]
155                 <option value="[% frameworkloo.value %]">[% frameworkloo.frameworktext %]</option>
156                 [% END %]
157             [% END %]
158         </select>
159     <input type="submit" value="Search" />
160 <p>        <label for="select_display">Display only used tags/subfields</label>
161         [% IF ( select_display ) %]
162             <input type="checkbox" name="select_display" id="select_display" value="True" checked="checked"  onchange="this.form.submit();" />
163         [% ELSE %]
164             <input type="checkbox" name="select_display" id="select_display" value="True" onchange="this.form.submit();" />
165         [% END %]</p>
166 </fieldset>
167 </form>
168
169     <table id="table_marctagstructure">
170     <thead>
171         <tr>
172         <th>Tag</th>
173         <th>Lib</th>
174         <th>Repeatable</th>
175         <th>Mandatory</th>
176         <th>Auth value</th>
177         <th>Subfields</th>
178         <th>Edit</th>
179         <th>Delete</th>
180         </tr>
181         </thead>
182     <tbody>
183     [% IF ( select_display ) %]
184         [% FOREACH loo IN loop %]
185             [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
186             <td>[% loo.tagfield %]</td>
187             <td>[% loo.liblibrarian %]</td>
188             <td>[% IF ( loo.repeatable ) %]Yes[% ELSE %]No[% END %]</td>
189             <td>[% IF ( loo.mandatory ) %]Yes[% ELSE %]No[% END %]</td>
190             <td>[% loo.authorised_value %]</td>
191             <td><a href="[% loo.subfield_link %]">subfields</a></td>
192             <td><a href="[% loo.edit %]">Edit</a></td>
193             <td><a href="[% loo.delete %]">Delete</a></td>
194         </tr>
195       [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
196             <td>&nbsp;</td>
197             <td colspan="7">
198                 [% FOREACH subfield IN loo.subfields %]
199                     <p> Tab:[% subfield.tab %] | $[% subfield.tagsubfield %]
200                             [% subfield.liblibrarian %] [% IF ( subfield.kohafield ) %][% subfield.kohafield %][% END %][% IF ( subfield.repeatable ) %], repeatable[% END %][% IF ( subfield.mandatory ) %], Mandatory[% END %][% IF ( subfield.seealso ) %], See [% subfield.seealso %][% END %][% IF ( subfield.authorised_value ) %], [% subfield.authorised_value %][% END %][% IF ( subfield.authtypecode ) %], [% subfield.authtypecode %][% END %][% IF ( subfield.value_builder ) %], [% subfield.value_builder %][% END %]
201                     </p>
202                 [% END %]
203             </td>
204         </tr>
205         [% END %]
206     [% ELSE %]
207     [% FOREACH loo IN loop %]
208     [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
209         <td>[% loo.tagfield %]</td>
210         <td>[% loo.liblibrarian %]</td>
211         <td>[% IF ( loo.repeatable ) %]Yes[% ELSE %]No[% END %]</td>
212         <td>[% IF ( loo.mandatory ) %]Yes[% ELSE %]No[% END %]</td>
213         <td>[% loo.authorised_value %]</td>
214         <td><a href="[% loo.subfield_link %]">Subfields</a></td>
215         <td><a href="[% loo.edit %]">Edit</a></td>
216         <td><a href="[% loo.delete %]">Delete</a></td>
217     </tr>
218     [% END %]
219     [% END %]
220     </tbody>
221     </table>
222
223
224
225 [% END %]
226
227
228     </div>
229   </div>
230 <div class="yui-b">
231 [% INCLUDE 'admin-menu.inc' %]
232 </div>
233 </div>
234 [% INCLUDE 'intranet-bottom.inc' %]