Bug 19594: Move admin templates JavaScript to the footer: MARC-related
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / marctagstructure.tt
1 [% USE AuthorisedValues %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Administration &rsaquo;
5 [% IF ( add_form ) %]MARC frameworks &rsaquo; [% action %] [% searchfield %][% END %]
6 [% IF ( delete_confirm ) %]MARC frameworks &rsaquo; Confirm deletion of tag '[% searchfield %]'[% END %]
7 [% IF ( delete_confirmed ) %]MARC frameworks &rsaquo;  Data deleted[% END %]
8 [% IF ( else ) %]MARC frameworks[% END %]</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
11 </head>
12
13 <body id="admin_marctagstructure" class="admin">
14 [% INCLUDE 'header.inc' %]
15 [% INCLUDE 'prefs-admin-search.inc' %]
16
17 <div id="breadcrumbs">
18          <a href="/cgi-bin/koha/mainpage.pl">Home</a>
19 &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
20 &rsaquo; <a href="/cgi-bin/koha/admin/biblio_framework.pl">MARC frameworks</a>
21 [% IF ( add_form ) %]
22 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% framework.frameworkcode %]">[% IF framework %][% framework.frameworktext |html %] ([% framework.frameworkcode %])[% ELSE %]Default MARC framework[% END%]</a>
23 &rsaquo; [% action %] [% searchfield %]
24 [% ELSIF ( else ) %]
25 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% framework.frameworkcode %]">[% IF framework %][% framework.frameworktext |html %] ([% framework.frameworkcode %])[% ELSE %]Default MARC framework[% END %]</a>
26 [% ELSIF ( delete_confirm ) %]
27 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% framework.frameworkcode %]">[% IF framework %][% framework.frameworktext |html %] ([% framework.frameworkcode %])[% ELSE %]Default MARC framework[% END %]</a>
28 &rsaquo; Confirm deletion of tag '[% searchfield %]'
29 [% ELSIF ( delete_confirmed ) %]
30 &rsaquo; <a href="/cgi-bin/koha/admin/marctagstructure.pl?frameworkcode=[% framework.frameworkcode %]">[% IF framework %][% framework.frameworktext |html %] ([% framework.frameworkcode %])[% ELSE %]Default MARC framework[% END %]</a>
31 &rsaquo; Data deleted
32 [% END %]
33 </div>
34
35 <div id="doc3" class="yui-t2">
36   <div id="bd">
37     <div id="yui-main">
38       <div class="yui-b">
39
40 [% IF ( else ) %]
41 <div id="toolbar" class="btn-toolbar">
42     <a class="btn btn-default btn-sm" id="addtag" href="/cgi-bin/koha/admin/marctagstructure.pl?op=add_form&amp;frameworkcode=[% framework.frameworkcode %]"><i class="fa fa-plus"></i> New tag</a>
43 </div>[% END %]
44
45 <h1>MARC Framework for [% IF framework %][% framework.frameworktext |html %] ([% framework.frameworkcode %])[% ELSE %]default MARC framework[% END %]</h1>
46
47 [% IF ( add_form ) %]
48
49     <form action="[% script_name %]" name="Aform" method="post" class="validated">
50
51       <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" />
52         <input type="hidden" name="frameworkcode" value="[% framework.frameworkcode %]" />
53
54         <ol>
55             <li>
56                 [% IF ( heading_modify_tag_p ) %]
57                     <input type="hidden" name="tagfield" value="[% searchfield %]" />
58                     <span class="label">Tag:</span>
59                     [% searchfield %]
60                 [% ELSE %]
61                     <label for="tagfield" class="required">Tag: </label>
62                     <input id="tagfield" type="text" name="tagfield" value="[% searchfield %]" maxlength="3" size="3" required="required" class="required" />
63                     <span class="required">Required</span>
64                 [% END %]
65             </li>
66     <li><label for="liblibrarian">Label for lib: </label><input type="text" id="liblibrarian" name="liblibrarian" value="[% liblibrarian |html %]" size="40" maxlength="100" /></li>
67     <li><label for="libopac">Label for opac: </label><input type="text" id="libopac" name="libopac" value="[% libopac |html %]" size="40" maxlength="100" /></li>
68     <li><label for="repeatable">Repeatable: </label>
69         [% IF ( repeatable ) %]
70             <input type="checkbox" name="repeatable" id="repeatable" value="1" checked="checked" />
71         [% ELSE %]
72             <input type="checkbox" name="repeatable" id="repeatable" value="1" />
73         [% END %]
74     </li>
75     <li><label for="mandatory">Mandatory: </label>
76         [% IF ( mandatory ) %]
77             <input type="checkbox" name="mandatory" id="mandatory" value="1" checked="checked" />
78         [% ELSE %]
79             <input type="checkbox" name="mandatory" id="mandatory" value="1" />
80         [% END %]
81     </li>
82     <li><label for="authorised_value">Authorized value: </label>
83         <select name="authorised_value" id="authorised_value" size="1">
84             <option value=""></option>
85             [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => authorised_value ) %]
86         </select>
87         (if you select a value here, the indicators will be limited to the authorized value list)</li>
88 </ol></fieldset> 
89     <fieldset class="action">
90         <input type="submit" value="Save changes" />
91         <a class="cancel" href="[% script_name %]?frameworkcode=[% framework.frameworkcode %]">Cancel</a>
92     </fieldset>
93     </form>
94 [% END %]
95
96
97 [% IF ( delete_confirm ) %]
98     <div class="dialog alert">
99         <h3>Confirm deletion of tag <span class="ex">'[% searchfield %]'</span>?</h3>
100         <p>Tag: [% searchfield %]</p>
101         <p>Description: [% liblibrarian %]</p>
102         <form action="[% script_name %]" method="post">
103             <input type="hidden" name="op" value="delete_confirmed" />
104             <input type="hidden" name="searchfield" value="[% searchfield %]" />
105             <input type="hidden" name="frameworkcode" value="[% framework.frameworkcode %]" />
106             <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete this tag</button>
107         </form>
108         <form action="[% script_name %]" method="get"><input type="hidden" name="frameworkcode" value="[% framework.frameworkcode %]" />
109             <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button>
110         </form>
111     </div>
112 [% END %]
113
114 [% IF ( delete_confirmed ) %]
115
116     <div class="dialog message"><h3>Tag deleted</h3>
117     <form action="[% script_name %]" method="post"><input type="hidden" name="frameworkcode" value="[% framework.frameworkcode %]" />
118         <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> OK</button>
119     </form></div>
120 [% END %]
121 [% IF ( framework_create ) %]
122
123     <form action="[% script_name %]" method="post">
124         <input type="hidden" name="op" value="framework_create_confirm" />
125         <input type="hidden" name="frameworkcode" value="[% framework.frameworkcode %]" />
126         Create framework for [% frameworkcode %] ([% framework.frameworktext |html %]) using
127         <select name="existingframeworkcode">
128             <option value="">Default</option>
129         [% FOREACH existingframeworkloo IN existingframeworkloop %]
130             <option value="[% existingframeworkloo.value %]">[% existingframeworkloo.frameworktext |html %]</option>
131         [% END %]
132         </select>
133         <input type="submit" value="OK" />
134     </form>
135 [% END %]
136
137
138 [% IF ( else ) %]
139 <form name="f" action="[% script_name %]" method="post">
140 <fieldset style="padding:.5em;">
141         <label for="searchfield"><strong>Search for tag:</strong> </label>
142         <input type="text" name="searchfield" id="searchfield" size="4" value="[% searchfield %]" />
143
144 <label for="frameworkcode"><strong>In framework:</strong> </label>
145         <select id="frameworkcode" name="frameworkcode">
146             <option value="">Default</option>
147             [% FOREACH f IN frameworks %]
148             [% IF f.frameworkcode == framework.frameworkcode %]
149                 <option value="[% f.frameworkcode %]" selected="selected">[% f.frameworktext |html %]</option>
150                 [% ELSE %]
151                 <option value="[% f.frameworkcode %]">[% f.frameworktext |html %]</option>
152                 [% END %]
153             [% END %]
154         </select>
155     <input type="submit" value="Search" />
156 <p>        <label for="select_display">Display only used tags/subfields</label>
157         [% IF ( select_display ) %]
158             <input type="checkbox" name="select_display" id="select_display" value="True" checked="checked" />
159         [% ELSE %]
160             <input type="checkbox" name="select_display" id="select_display" value="True" />
161         [% END %]</p>
162 </fieldset>
163 </form>
164
165     <table id="table_marctagstructure">
166     <thead>
167         <tr>
168         <th>Tag</th>
169         <th>Lib</th>
170         <th>Repeatable</th>
171         <th>Mandatory</th>
172         <th>Auth value</th>
173         <th>&nbsp;</th>
174         </tr>
175     </thead>
176     <tbody>
177     [% IF ( select_display ) %]
178         [% FOREACH loo IN loop %]
179         <tr>
180             <td>[% loo.tagfield %]</td>
181             <td>
182                 [% loo.liblibrarian %]
183                 [% FOREACH subfield IN loo.subfields %]
184                     <p>
185                         Tab:[% subfield.tab %] | $[% subfield.tagsubfield %]
186                         [% 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 %]
187                     </p>
188                 [% END %]
189             </td>
190             <td>[% IF ( loo.repeatable ) %]Yes[% ELSE %]No[% END %]</td>
191             <td>[% IF ( loo.mandatory ) %]Yes[% ELSE %]No[% END %]</td>
192             <td>[% loo.authorised_value %]</td>
193             <td>
194                 <div class="dropdown">
195                     <a class="btn btn-default btn-xs dropdown-toggle" id="marctagactions[% loo.tagfield %]" role="button" data-toggle="dropdown" href="#">
196                         Actions <b class="caret"></b></a>
197                     <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="marctagactions[% loo.tagfield %]">
198                         <li><a href="[% loo.subfield_link %]"><i class="fa fa-eye"></i> Subfields</a></li>
199                         <li><a href="[% loo.edit %]"><i class="fa fa-pencil"></i> Edit</a></li>
200                         <li><a href="[% loo.delete %]"><i class="fa fa-trash"></i> Delete</a></li>
201                     </ul>
202                 </div>
203             </td>
204         </tr>
205         [% END %]
206     [% ELSE %]
207     [% FOREACH loo IN loop %]
208     <tr>
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>
215             <div class="dropdown">
216                 <a class="btn btn-default btn-xs dropdown-toggle" id="marctagactions[% loo.tagfield %]" role="button" data-toggle="dropdown" href="#">
217                     Actions <b class="caret"></b></a>
218                 <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="marctagactions[% loo.tagfield %]">
219                     <li><a href="[% loo.subfield_link %]"><i class="fa fa-eye"></i> Subfields</a></li>
220                     <li><a href="[% loo.edit %]"><i class="fa fa-pencil"></i> Edit</a></li>
221                     <li><a href="[% loo.delete %]"><i class="fa fa-trash"></i> Delete</a></li>
222                 </ul>
223             </div>
224         </td>
225     </tr>
226     [% END %]
227     [% END %]
228     </tbody>
229     </table>
230
231
232
233 [% END %]
234
235
236     </div>
237   </div>
238 <div class="yui-b">
239 [% INCLUDE 'admin-menu.inc' %]
240 </div>
241 </div>
242
243 [% MACRO jsinclude BLOCK %]
244     [% INCLUDE 'datatables.inc' %]
245     <script type="text/javascript" src="[% interface %]/[% theme %]/js/admin-menu.js"></script>
246     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.cookie.min.js"></script>
247     <script type="text/javascript">
248         $(document).ready(function() {
249             $("#table_marctagstructure").dataTable($.extend(true, {}, dataTablesDefaults, {
250                 "aoColumnDefs": [
251                     { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
252                 ],
253                 "sPaginationType": "four_button"
254             }));
255             $("#select_display").on("change",function(){
256                 var checked = $(this).prop("checked") ? 1: 0;
257                 $.cookie('marctagstructure_selectdisplay', checked);
258                 this.form.submit();
259             });
260         });
261     </script>
262 [% END %]
263 [% INCLUDE 'intranet-bottom.inc' %]