Bug 22023: Further improve responsive layout handling of staff client menu bar
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / authorities / authorities.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Authorities &rsaquo; [% IF ( authid ) %]Modify authority #[% authid | html %] ([% authtypetext | html %])[% ELSE %]Adding authority ([% authtypetext | html %])[% END %]</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 [% Asset.js("lib/hc-sticky.js") | $raw %]
7 [% Asset.js("js/cataloging.js") | $raw %]
8
9 <script type="text/javascript">
10 //<![CDATA[
11     $(window).load(function(){
12         $("#loading").hide();
13     });
14     var Sticky;
15          $(document).ready(function() {
16         $('#authoritytabs').tabs();
17         Sticky = $("#toolbar");
18         Sticky.hcSticky({
19             stickTo: ".main",
20             stickyClass: "floating"
21         });
22         $("#addauth").click(function(){
23             if(Check()){
24                 $("#f").submit();
25             }
26                 });
27         $("#z3950submit").click(function(){
28             if (confirm(_("Please note that this Z39.50 search could replace the current record."))){
29                 var strQuery = GetZ3950Terms();
30                 if(strQuery){
31                     window.open("/cgi-bin/koha/cataloguing/z3950_auth_search.pl?authid=[% authid | html %]"+strQuery,"z3950search",'width=740,height=450,location=yes,toolbar=no,scrollbars=yes,resize=yes');
32                 }
33             }
34             return false;
35         });
36          });
37
38 /**
39  * check if z3950 mandatories are set or not
40  */
41 function GetZ3950Terms(){
42  var strQuery="&authtypecode="+document.forms['f'].authtypecode.value;
43     var mandatories = new Array();
44     var mandatories_label = new Array();
45     [% FOREACH BIG_LOO IN BIG_LOOP %][% FOREACH innerloo IN BIG_LOO.innerloop %][% FOREACH subfield_loo IN innerloo.subfield_loop %][% IF ( subfield_loo.z3950_mandatory ) %]mandatories.push("[% subfield_loo.id | html %]");
46         mandatories_label.push("[% subfield_loo.z3950_mandatory | html %]");[% END %][% END %][% END %][% END %]
47
48     for(var i=0,len=mandatories.length; i<len ; i++){
49         var field_value = document.getElementById(mandatories[i]).value;
50         if( field_value ){
51             strQuery += "&"+mandatories_label[i]+"="+field_value;
52         }
53     }
54     return strQuery;
55 }
56
57 /**
58  * check if mandatory subfields are written
59  */
60 function AreMandatoriesNotOk(){
61     var mandatories = new Array();
62     var mandatoriesfields = new Array();
63     var   tab = new Array();
64     var label = new Array();
65     [% FOREACH BIG_LOO IN BIG_LOOP %]
66         [% FOREACH innerloo IN BIG_LOO.innerloop %]
67                         [% IF ( innerloo.mandatory ) %]
68                         mandatoriesfields.push(new Array("[% innerloo.tag | html %]","[% innerloo.index | html %][% innerloo.random | html %]","[% innerloo.index | html %]"));
69             [% END %]
70                 [% FOREACH subfield_loo IN innerloo.subfield_loop %]
71                         [% IF ( subfield_loo.mandatory ) %]mandatories.push("[% subfield_loo.id | html %]");
72                     tab.push("[% BIG_LOO.number | html %]");
73                     label.push("[% subfield_loo.marc_lib | $raw |replace("'", "\'") |replace('"', '\"') |replace('\n', '\\n') |replace('\r', '\\r') %]");
74                         [% END %]
75                         [% END %]
76                 [% END %]
77         [% END %]
78     var StrAlert = "";
79     for(var i=0,len=mandatories.length; i<len ; i++){
80         var id_string = mandatories[i];
81         // alert (id_string);
82         if( ! $("#" + id_string).val() ){
83             $("#" + id_string).attr('class','subfield_not_filled').focus();
84             StrAlert += "\t* " + _("%s in tab %s").format(label[i], tab[i]) + "\n";
85         }
86     }
87     
88     /* Check for mandatories field(not subfields) */
89     for(var i=0,len=mandatoriesfields.length; i<len; i++){
90         isempty  = true;
91         arr      = mandatoriesfields[i];
92         divid    = "tag_" + arr[0] + "_" + arr[1];
93         varegexp = new RegExp("^tag_" + arr[0] + "_code_");
94
95                 if(parseInt(arr[0]) >= 10){
96                 elem = document.getElementById(divid);
97                 eleminputs = elem.getElementsByTagName('input');
98                 
99                 for(var j=0,len2=eleminputs.length; j<len2; j++){
100         
101                         if(eleminputs[j].name.match(varegexp) && eleminputs[j].value){
102                                         inputregexp = new RegExp("^tag_" + arr[0] + "_subfield_" + eleminputs[j].value + "_" + arr[2]);
103                                         
104                                         for( var k=0; k<len2; k++){
105                                                 if(eleminputs[k].id.match(inputregexp) && eleminputs[k].value){
106                                                         isempty = false
107                                                 }
108                                         }
109                         }
110                 }
111         }else{
112                 isempty = false;
113         }
114         
115         if(isempty){
116                 flag = 1;
117                 StrAlert += "\t* " + _("Field %s is mandatory, at least one of its subfields must be filled.").format(arr[0]) + "\n";
118         }
119         
120     }
121     
122     
123     if(StrAlert){
124         return _("Can't save this record because the following field aren't filled :") + "\n\n" + StrAlert;
125     }
126     return false;
127 }
128
129 function Check(){
130     var StrAlert = AreMandatoriesNotOk();
131     if( ! StrAlert ){
132         document.f.submit();
133         return true;
134     } else {
135         alert(StrAlert);
136         return false;
137     }
138 }
139
140 function AddField(field,cntrepeatfield) {
141     document.forms['f'].op.value = "addfield";
142     document.forms['f'].addfield_field.value=field;
143     document.forms['f'].repeat_field.value=cntrepeatfield;
144     document.f.submit();
145 }
146
147 function addauthority() {
148     X = document.forms[0].authtype.value;
149     window.location="/cgi-bin/koha/authorities/authorities.pl?authtypecode="+X;
150 }
151 function searchauthority() {
152     X = document.forms[0].authtype2.value;
153     Y = document.forms[0].value.value;
154     window.location="/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&authtypecode="+X+"&value="+Y+"&marclist=&and_or=and&excluding=&operator=contains";
155 }
156 function confirmnotdup(redirect){
157     $("#confirm_not_duplicate").attr("value","1");
158     Check();
159 }
160 //]]>
161 </script>
162 [% Asset.css("css/addbiblio.css") | $raw %]
163
164 [% INCLUDE 'select2.inc' %]
165 <script>
166   $(document).ready(function() {
167     $('.subfield_line select').select2();
168   });
169 </script>
170
171 </head>
172 <body id="auth_authorities" class="auth">
173
174 <div id="loading">
175    <div>Loading, please wait...</div>
176 </div>
177
178 [% INCLUDE 'header.inc' %]
179
180 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a> &rsaquo; [% IF ( authid ) %]Modify authority #[% authid | html %] ([% authtypetext | html %])[% ELSE %]Adding authority [% authtypetext | html %][% END %]  </div>
181
182 <div class="main container-fluid">
183     <div class="row">
184         <div class="col-md-8 col-md-offset-2">
185
186 [% IF ( authid ) %]
187 <h1>Modify authority #[% authid | html %] [% authtypetext | html %]</h1>
188 [% ELSE %]
189 <h1>Adding authority [% authtypetext | html %]</h1>
190 [% END %]
191
192 [% IF ( duplicateauthid ) %]
193         <div class="dialog alert">
194                 <h3>Duplicate record suspected</h3>
195                 <p>Is this a duplicate of <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% duplicateauthid | uri %]" class="popup" onclick="openWindow('/cgi-bin/koha/authorities/detail.pl?authid=[% duplicateauthid | html %]&amp;popup=1', 'DuplicateAuthority','800','600'); return false;" class="button">[% duplicateauthvalue | html %]</a> ?</p>
196
197                 <form action="authorities.pl" method="get">
198                     <input type="hidden" name="authid" value="[% duplicateauthid | html %]" />
199                     <button type="submit" class="new"><i class="fa fa-pencil"></i> Yes: Edit existing authority</button>
200                 </form>
201                 <form action="authorities.pl" method="get">
202                     <button class="new" onclick="confirmnotdup('items'); return false;"><i class="fa fa-save"></i> No: Save as new authority</button>
203                 </form>
204         </div>
205 [% END %]
206
207 <form method="post" name="f" action="/cgi-bin/koha/authorities/authorities.pl">
208     <input type="hidden" name="op" value="add" />
209     <input type="hidden" name="addfield_field" value="" />
210     <input type="hidden" name="repeat_field" value="" />
211     <input type="hidden" name="authtypecode" value="[% authtypecode | html %]" />
212     <input type="hidden" name="authid" value="[% authid | html %]" />
213     <input type="hidden" name="index" value="[% index | html %]" />
214     <input type="hidden" value="0" id="confirm_not_duplicate" name="confirm_not_duplicate" />
215
216     <div id="toolbar" class="btn-toolbar">
217         <div class="btn-group"><a href="#" id="addauth" class="btn btn-default" accesskey="w"><i class="fa fa-save"></i> Save</a></div>
218         <div class="btn-group">
219             <a class="btn btn-default" id="z3950submit" href="#"><i class="fa fa-search"></i> Z39.50 search</a>
220         </div>
221         <div class="btn-group">
222             [% IF ( authid ) %]
223                 <a class="btn btn-default" id="cancel" href="/cgi-bin/koha/authorities/detail.pl?authid=[% authid | url %]">Cancel</a>
224             [% ELSE %]
225                 <a class="btn btn-default" id="cancel" href="/cgi-bin/koha/authorities/authorities-home.pl">Cancel</a>
226             [% END %]
227         </div>
228     </div>
229
230 <div id="authoritytabs" class="toptabs numbered">
231     <ul>
232         [% FOREACH BIG_LOO IN BIG_LOOP %]
233         <li><a href="#tab[% BIG_LOO.number | uri %]XX">[% BIG_LOO.number | html %]</a></li>
234         [% END %]
235     </ul>
236
237 [% FOREACH BIG_LOO IN BIG_LOOP %]
238     <div id="tab[% BIG_LOO.number | html %]XX">
239
240     [% FOREACH innerloo IN BIG_LOO.innerloop %]
241     [% IF ( innerloo.tag ) %]
242     <div class="tag clearfix" id="tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]">
243         <div class="tag_title" id="div_indicator_tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]">
244         [% UNLESS hide_marc %]
245             [% IF advancedMARCEditor %]
246                 <a href="#" tabindex="1" class="tagnum" title="[% innerloo.tag_lib | html %] - Click to Expand this Tag" onclick="ExpandField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;">[% innerloo.tag | html %]</a>
247             [% ELSE %]
248                 <span title="[% innerloo.tag_lib | html %]">[% innerloo.tag | html %]</span>
249             [% END %]
250                 [% IF ( innerloo.fixedfield ) %]
251                     <input type="text"
252                         tabindex="1"
253                         class="indicator flat"
254                         style="display:none;"
255                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
256                         size="1"
257                         maxlength="1"
258                         value="[% innerloo.indicator1 | html %]" />
259                     <input type="text"
260                         tabindex="1"
261                         class="indicator flat"
262                         style="display:none;"
263                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
264                         size="1"
265                         maxlength="1"
266                         value="[% innerloo.indicator2 | html %]" />
267                 [% ELSE %]
268                     <input type="text"
269                         tabindex="1"
270                         class="indicator flat"
271                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
272                         size="1"
273                         maxlength="1"
274                         value="[% innerloo.indicator1 | html %]" />
275                     <input type="text"
276                         tabindex="1"
277                         class="indicator flat"
278                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
279                         size="1"
280                         maxlength="1"
281                         value="[% innerloo.indicator2 | html %]" />
282                 [% END %] -
283         [% ELSE %]
284                 [% IF ( innerloo.fixedfield ) %]
285                     <input type="hidden"
286                         tabindex="1"
287                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
288                         value="[% innerloo.indicator1 | html %]" />
289                     <input type="hidden"
290                         tabindex="1"
291                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
292                         value="[% innerloo.indicator2 | html %]" />
293                 [% ELSE %]
294                     <input type="hidden"
295                         tabindex="1"
296                         name="tag_[% innerloo.tag | html %]_indicator1_[% innerloo.index | html %][% innerloo.random | html %]"
297                         value="[% innerloo.indicator1 | html %]" />
298                     <input type="hidden"
299                         tabindex="1"
300                         name="tag_[% innerloo.tag | html %]_indicator2_[% innerloo.index | html %][% innerloo.random | html %]"
301                         value="[% innerloo.indicator2 | html %]" />
302                 [% END %]
303         [% END %]
304
305             [% UNLESS advancedMARCEditor %]
306                 <a href="#" tabindex="1" class="expandfield" onclick="ExpandField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;" title="Click to Expand this Tag">[% innerloo.tag_lib | html %]</a>
307             [% END %]
308                 <span class="field_controls">
309                 [% IF ( innerloo.repeatable ) %]
310                     <a href="#" tabindex="1" class="buttonPlus" onclick="CloneField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]','[% hide_marc | html %]','[% advancedMARCEditor | html %]'); return false;" title="Repeat this Tag">
311                         <img src="[% interface | html %]/[% theme | html %]/img/repeat-tag.png" alt="Repeat this Tag" />
312                     </a>
313                 [% END %]
314                     <a href="#" tabindex="1" class="buttonMinus" onclick="UnCloneField('tag_[% innerloo.tag | html %]_[% innerloo.index | html %][% innerloo.random | html %]'); return false;" title="Delete this Tag">
315                         <img src="[% interface | html %]/[% theme | html %]/img/delete-tag.png" alt="Delete this Tag" />
316                     </a>
317                 </span>
318
319         </div>
320
321         [% FOREACH subfield_loo IN innerloo.subfield_loop %]
322             <!--  One line on the marc editor -->
323             <div class="subfield_line" style="[% subfield_loo.visibility | html %]" id="subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]">
324
325                 [% UNLESS advancedMARCEditor %]
326                     [% IF ( subfield_loo.fixedfield ) %]<label for="tag_[% subfield_loo.tag | html %]_subfield_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]" style="display:none;" class="labelsubfield">
327                     [% ELSE %]<label for="tag_[% subfield_loo.tag | html %]_subfield_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]" class="labelsubfield">
328                     [% END %]
329                 [% END %]
330                 
331                 [% UNLESS hide_marc %]
332                 <span class="subfieldcode">
333                     [% IF ( subfield_loo.fixedfield ) %]
334                         <img class="buttonUp" style="display:none;" src="[% interface | html %]/[% theme | html %]/img/up.png" onclick="upSubfield('subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]')" alt="Move Up" title="Move Up" />
335                     [% ELSE %]
336                         <img class="buttonUp" src="[% interface | html %]/[% theme | html %]/img/up.png" onclick="upSubfield('subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]')" alt="Move Up" title="Move Up" />
337                     [% END %]
338                         <input type="text"
339                             title="[% subfield_loo.marc_lib | $raw %]"
340                             style=" [% IF ( subfield_loo.fixedfield ) %]display:none; [% END %]border:0;"
341                             name="tag_[% subfield_loo.tag | html %]_code_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]"
342                             value="[% subfield_loo.subfield | html %]"
343                             size="1"
344                             maxlength="1"
345                             class="flat"
346                             tabindex="0" />
347                 </span>
348                 [% ELSE %]
349                     <input type="hidden"
350                         name="tag_[% subfield_loo.tag | html %]_code_[% subfield_loo.subfield | html %]_[% subfield_loo.index | html %]_[% subfield_loo.index_subfield | html %]"
351                         value="[% subfield_loo.subfield | html %]" />
352                 [% END %]
353
354                 [% UNLESS advancedMARCEditor %]
355                     [% IF ( subfield_loo.mandatory ) %]<span class="subfield subfield_mandatory">[% ELSE %]<span class="subfield">[% END %]
356                         [% subfield_loo.marc_lib | $raw %]
357                         [% IF ( subfield_loo.mandatory ) %]<span class="mandatory_marker" title="This field is mandatory">*</span>[% END %]
358                     </span>
359                     </label>
360                 [% END %]
361                 
362                 [% SET mv = subfield_loo.marc_value %]
363                 [% IF ( mv.type == 'select' ) %]
364                      <select name="[%- mv.name | html -%]" tabindex="1" size="1" class="input_marceditor" id="[%- mv.id | html -%]">
365                      [% FOREACH aval IN mv.values %]
366                          [% IF aval == mv.default %]
367                          <option value="[%- aval | html -%]" selected="selected">[%- mv.labels.$aval | html -%]</option>
368                          [% ELSE %]
369                          <option value="[%- aval | html -%]">[%- mv.labels.$aval | html -%]</option>
370                          [% END %]
371                      [% END %]
372                      </select>
373                 [% ELSIF ( mv.type == 'text1' ) %]
374                     <input type="text" id="[%- mv.id | html -%]" name="[%- mv.id | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" />
375                     <a href="#" class="buttonDot" onclick="openAuth(this.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtypecode | html -%]','auth'); return false;" tabindex="1" title="Tag editor">...</a>
376                 [% ELSIF ( mv.type == 'text2' ) %]
377                     <input type="text" id="[%- mv.id | html -%]" size="67" maxlength="[%- mv.maxlength | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" />
378                     [% IF mv.noclick %]
379                         <a href="#" class="buttonDot tag_editor disabled" tabindex="-1" title="No popup">...</a>
380                     [% ELSE %]
381                         <a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor" title="Tag editor">...</a>
382                     [% END %]
383                     [% mv.javascript | $raw %]
384                 [% ELSIF ( mv.type == 'text' ) %]
385                     <input type="text" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" size="67" maxlength="[%- mv.maxlength | html -%]" />
386                 [% ELSIF ( mv.type == 'textarea' ) %]
387                     <textarea cols="70" rows="4" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" class="input_marceditor" tabindex="1" size="67" maxlength="[%- mv.maxlength | html -%]">[%- mv.value | html -%]</textarea>
388                 [% ELSIF ( mv.type == 'hidden' ) %]
389                     <input tabindex="1" type="hidden" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" size="67" maxlength="[%- mv.maxlength | html -%]" value="[%- mv.value | html -%]" />
390                 [% ELSIF ( mv.type == 'hidden_simple' ) %]
391                     <input type="hidden" name="[%- mv.name | html -%]" />
392                 [% END %]
393
394                 <span class="subfield_controls">
395                 [% IF ( subfield_loo.repeatable ) %]
396                     <a href="#" class="buttonPlus" tabindex="1" onclick="CloneSubfield('subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]','[% advancedMARCEditor | html %]'); return false;">
397                         <img src="[% interface | html %]/[% theme | html %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" />
398                     </a>
399                     <a href="#" class="buttonMinus" tabindex="1" onclick="UnCloneField('subfield[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]'); return false;">
400                         <img src="[% interface | html %]/[% theme | html %]/img/delete-subfield.png" alt="Delete" title="Delete this subfield" />
401                     </a>
402                 [% END %]
403                 </span>
404                 
405             </div>
406             <!-- End of the line -->
407         [% END %]
408
409     </div>
410     [% END %]<!-- if innerloo.tag -->
411     [% END %]<!-- BIG_LOO.innerloop -->
412     </div>
413 [% END %]<!-- BIG_LOOP -->
414
415 </div><!-- tabs -->
416
417 <div name="hidden" id="hidden" class="tab">
418 [% FOREACH hidden_loo IN hidden_loop %]
419     <input type="hidden" name="tag" value="[% hidden_loo.tag | html %]" />
420     <input type="hidden" name="subfield" value="[% hidden_loo.subfield | html %]" />
421     <input type="hidden" name="mandatory" value="[% hidden_loo.mandatory | html %]" />
422     <input type="hidden" name="kohafield" value="[% hidden_loo.kohafield | html %]" />
423     <input type="hidden" name="tag_mandatory" value="[% hidden_loo.tag_mandatory | html %]" />
424 [% END %]
425 </div>
426 [% IF ( oldauthnumtagfield ) %]
427     <input type="hidden" name="tag" value="[% oldauthnumtagfield | html %]" />
428     <input type="hidden" name="subfield" value="[% oldauthnumtagsubfield | html %]" />
429     <input type="hidden" name="field_value" value="[% authid | html %]" />
430     <input type="hidden" name="mandatory" value="0" />
431     <input type="hidden" name="kohafield" value="[% kohafield | html %]" />
432     <input type="hidden" name="tag_mandatory" value="[% tag_mandatory | html %]" />
433     <input type="hidden" name="tag" value="[% oldauthtypetagfield | html %]" />
434     <input type="hidden" name="subfield" value="[% oldauthtypetagsubfield | html %]" />
435     <input type="hidden" name="field_value" value="[% authtypecode | html %]" />
436 [% END %]
437
438 </form>
439
440 </div>
441 </div>
442 </div>
443
444 [% INCLUDE 'intranet-bottom.inc' %]