Moving </head><body> into body of templates so that js and css can be embedded per...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / marctagstructure.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; System Administration &rsaquo;
3 <!-- TMPL_IF name="add_form" --><!-- TMPL_VAR name="action" --><!-- /TMPL_IF -->
4 <!-- TMPL_IF name="delete_confirm" -->Confirm Deletion of Tag '<!-- TMPL_VAR name="searchfield" -->'<!-- /TMPL_IF -->
5 <!-- TMPL_IF name="delete_confirmed" -->Data Deleted<!-- /TMPL_IF -->
6 <!-- TMPL_IF name="else" -->MARC tag Structure<!-- /TMPL_IF --></title>
7 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
8 </head>
9 <body>
10 <!-- TMPL_INCLUDE NAME="header.inc" -->
11
12 <!-- TMPL_INCLUDE NAME="menu-admin.inc" -->
13
14 <div id="doc3" class="yui-t2">
15    
16    <div id="bd">
17         <div id="yui-main">
18         <div class="yui-b"><div class="yui-g">
19
20 <h1>MARC tag structure admin for <!-- TMPL_IF NAME="frameworkcode" --><!-- TMPL_VAR NAME="frameworktext" --> (<!-- TMPL_VAR NAME="frameworkcode" -->)<!-- TMPL_ELSE -->default MARC framework<!-- /TMPL_IF --></h1>
21 <script language="javascript" type="text/javascript">
22     /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
23     function isNotNull(f,noalert) {
24         if (f.value.length ==0) {
25                         return false;
26         }
27         return true;
28     }
29     /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
30     function toUC(f) {
31         var x=f.value.toUpperCase();
32         f.value=x;
33         return true;
34     }
35     /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
36     function isNum(v,maybenull) {
37     var n = new Number(v.value);
38     if (isNaN(n)) {
39         return false;
40         }
41     if (maybenull==0 && v.value=='') {
42         return false;
43     }
44     return true;
45     }
46     /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
47     function isDate(f) {
48         var t = Date.parse(f.value);
49         if (isNaN(t)) {
50             return false;
51         }
52     }
53     /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
54     function Check(f) {
55         var ok=1;
56         var _alertString="";
57         var alertString2;
58         if (f.tagfield.value.length==0) {
59             _alertString += "\n- " + _("tag number missing");
60         }
61         if (_alertString.length==0) {
62             document.Aform.submit();
63         } else {
64             alertString2  = _("Form not submitted because of the following problem(s)");
65             alertString2 += "\n------------------------------------------------------------------------------------\n";
66             alertString2 += _alertString;
67             alert(alertString2);
68         }
69     }
70     </script>
71
72 <!-- TMPL_IF NAME="add_form" -->
73 <!-- ------------------------------------------------------------------------ -->
74     <form action="<!-- TMPL_VAR NAME="script_name" -->" name="Aform" method="post">
75         <input type="hidden" name="op" value="add_validate" />
76         <input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR NAME="frameworkcode" -->" />
77         <h2><!-- TMPL_IF NAME="use-heading-flags-p" --><!-- TMPL_IF NAME="heading-modify-tag-p" -->Modify tag<!-- /TMPL_IF --><!-- TMPL_IF NAME="heading-add-tag-p" -->Add tag<!-- /TMPL_IF --><!-- TMPL_ELSE --><!-- TMPL_VAR NAME="action" --><!-- /TMPL_IF --></h2>
78          <p><label>Tag</label><input id="tagfield" type="text" name="tagfield" value="<!-- TMPL_VAR NAME="searchfield" -->" maxlength="3" size="3" /></p>    
79     <p><label for="liblibrarian">Label for lib</label><input type="text" id="liblibrarian" name="liblibrarian" value="<!-- TMPL_VAR NAME="liblibrarian" ESCAPE="HTML" -->" size="40" maxlength="100" /></p>
80     <p><label for="libopac">Label for opac</label><input type="text" id="libopac" name="libopac" value="<!-- TMPL_VAR NAME="libopac" ESCAPE="HTML" -->" size="40" maxlength="100" /></p>
81     <p><label for="repeatable">Repeatable</label><!-- TMPL_VAR NAME="repeatable" -->&nbsp;</p>
82     <p><label for="mandatory">Mandatory</label><!-- TMPL_VAR NAME="mandatory" -->&nbsp;</p>
83     <p><label for="authorised_value">Authorized value</label><!-- TMPL_VAR NAME="authorised_value" --> (if you select a value here, the indicators will be limited to the authorised value list)</p>
84         <p>
85             <input type="submit" value="Save Changes" onclick="Check(this.form)" />
86             <input type="submit" value="Cancel and Return to MARC Tag Structure" onclick="location.href='<!-- TMPL_VAR NAME="script_name" -->?frameworkcode=<!-- TMPL_VAR NAME="frameworkcode" -->'; return false;" />
87         </p>
88     </form>
89 <!-- /TMPL_IF -->
90
91
92 <!-- TMPL_IF NAME="delete_confirm" -->
93 <!-- ------------------------------------------------------------------------ -->
94 <table>
95 <caption>Confirm Deletion of Tag <em><!-- TMPL_VAR NAME="searchfield" --></em>?</caption>
96     <p>Tag: <!-- TMPL_VAR NAME="searchfield" --></p>
97     <p>Description: <!-- TMPL_VAR NAME="liblibrarian" --></p>
98     </table>
99     <form class="inline" action="<!-- TMPL_VAR NAME="script_name" -->" method="post"><input type="hidden" name="op" value="delete_confirmed"><input type="hidden" name="searchfield" value="<!-- TMPL_VAR NAME="searchfield" -->" /><input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR NAME="frameworkcode" -->" /> <input type="submit" value="Yes, Delete this Tag" /></form> <form class="inline" action="<!-- TMPL_VAR NAME="script_name" -->" method="post"><input type="submit" value="No, Do Not Delete" /></form>
100 <!-- /TMPL_IF -->
101
102 <!-- TMPL_IF NAME="delete_confirmed" -->
103 <!-- ------------------------------------------------------------------------ -->
104     <div class="details"><h3>Tag Deleted</h3>
105     <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post"><input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR NAME="frameworkcode" -->" />
106     <input type="submit" value="Return to MARC Tag Structure" />
107     </form>
108 <!-- /TMPL_IF -->
109 <!-- TMPL_IF NAME="framework_create" -->
110 <!-- ------------------------------------------------------------------------ -->
111     <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
112         <input type="hidden" name="op" value="framework_create_confirm" />
113         <input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR NAME="frameworkcode" -->" />
114         Create framework for <!-- TMPL_VAR NAME="frameworkcode" --> (<!-- TMPL_VAR NAME="frameworktext" -->) using
115         <select name="existingframeworkcode">
116             <option value="">Default</option>
117         <!-- TMPL_LOOP NAME="existingframeworkloop" -->
118             <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="frameworktext" --></option>
119         <!-- /TMPL_LOOP -->
120         </select>
121         <input type="submit" value="OK" />
122     </form>
123 <!-- /TMPL_IF -->
124
125 <!-- ------------------------------------------------------------------------ -->
126 <!-- TMPL_IF NAME="else" -->
127
128 <form name="f" action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
129     <p><label for="frameworkcode">Framework</label>
130         <select id="frameworkcode" name="frameworkcode">
131             <option value="">Default</option>
132             <!-- TMPL_LOOP NAME="frameworkloop" -->
133                         <!-- TMPL_IF NAME="selected" -->
134                 <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="frameworktext" --></option>
135                                 <!-- TMPL_ELSE -->
136                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="frameworktext" --></option>
137                                 <!-- /TMPL_IF -->
138             <!-- /TMPL_LOOP -->
139         </select>
140     </p>
141     <p>
142         <label for="searchfield">Search for Tag</label>
143         <input type="text" name="searchfield" id="searchfield" value="<!-- TMPL_VAR NAME="searchfield" -->" />
144         <input type="submit" value="Search" />
145     </p>
146     <p>
147         <!-- TMPL_IF Name="select_display"-->
148             <label for="select_display">Display only used Tags/Subfields</label> <input type="checkbox" name="select_display" id="select_display" value="True" checked="checked"  onchange="this.form.submit();" />
149         <!-- TMPL_ELSE -->
150             <label for="select_display">Display only used Tags/Subfields</label> <input type="checkbox" name="select_display" id="select_display" value="True" onchange="this.form.submit();" />
151         <!--/TMPL_IF -->
152     </p>
153 </form>
154 <p>NOTE : if you change the link between a MARC subfield and a non-MARC field, ask your administrator to run misc/rebuildnonmarc.pl script.</p>
155
156     <table>
157     <tr>
158         <th>Tag</th>
159         <th>Lib</th>
160         <th>Repeatable</th>
161         <th>Mandatory</th>
162         <th>Auth value</th>
163         <th>Subfields</th>
164         <th>Edit</th>
165         <th>Delete</th>
166                 <tr>
167     <!-- TMPL_IF NAME="select_display" -->
168         <!-- TMPL_LOOP NAME="loop" -->
169             <!-- TMPL_IF NAME="toggle" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
170             <td><!-- TMPL_VAR NAME="tagfield" --></td>
171             <td><!-- TMPL_VAR NAME="liblibrarian" --></td>
172             <td><!-- TMPL_IF NAME="repeatable" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
173             <td><!-- TMPL_IF NAME="mandatory" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
174             <td><!-- TMPL_VAR NAME="authorised_value" --></td>
175             <td><a href="<!-- TMPL_VAR NAME="subfield_link" -->">subfields</a></td>
176             <td><a href="<!-- TMPL_VAR NAME="edit" -->">Edit</a></td>
177             <td><a href="<!-- TMPL_VAR NAME="delete" -->">Delete</a></td>
178         </tr>
179             <!-- TMPL_IF NAME="toggle" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
180             <td>
181                 &nbsp;
182             </td>
183             <td colspan="7">
184                 <!-- TMPL_LOOP NAME="subfields" -->
185                     <p> Tab:<!-- TMPL_VAR NAME="tab" --> | $<!-- TMPL_VAR NAME="tagsubfield" -->
186                             <!-- TMPL_VAR NAME="liblibrarian" --> <!-- TMPL_IF NAME="kohafield" --><!-- TMPL_VAR NAME="kohafield" --><!--/TMPL_IF --><!-- TMPL_IF NAME="repeatable" -->, repeatable<!-- /TMPL_IF --><!-- TMPL_IF NAME="mandatory" -->, Mandatory<!-- /TMPL_IF --><!-- TMPL_IF NAME="seealso" -->, See <!-- TMPL_VAR name="seealso" --><!--/TMPL_IF --><!-- TMPL_IF NAME="authorised_value" -->, <!-- TMPL_VAR NAME="authorised_value" --><!--/TMPL_IF --><!-- TMPL_IF NAME="authtypecode" -->, <!-- TMPL_VAR NAME="authtypecode" --><!--/TMPL_IF --><!-- TMPL_IF NAME="value_builder" -->, <!-- TMPL_VAR NAME="value_builder" --><!--/TMPL_IF -->
187                     </p>
188                 <!-- /TMPL_LOOP -->
189             </td>
190         </tr>
191         <!-- /TMPL_LOOP -->
192     <!-- TMPL_ELSE -->
193     <!-- TMPL_LOOP NAME="loop" -->
194     <!-- TMPL_IF NAME="toggle" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
195         <td><!-- TMPL_VAR NAME="tagfield" --></td>
196         <td><!-- TMPL_VAR NAME="liblibrarian" --></td>
197         <td><!-- TMPL_IF NAME="repeatable" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
198         <td><!-- TMPL_IF NAME="mandatory" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
199         <td><!-- TMPL_VAR NAME="authorised_value" --></td>
200         <td><a href="<!-- TMPL_VAR NAME="subfield_link" -->">Subfields</a></td>
201         <td><a href="<!-- TMPL_VAR NAME="edit" -->">Edit</a></td>
202         <td><a href="<!-- TMPL_VAR NAME="delete" -->">Delete</a></td>
203     </tr>
204     <!-- /TMPL_LOOP -->
205     <!--/TMPL_IF -->
206     </table>
207     <!-- TMPL_IF NAME="isprevpage" -->
208             <a href="<!-- TMPL_VAR NAME="script_name" -->?offset=<!-- TMPL_VAR NAME="prevpage" -->&amp;searchfield=<!-- TMPL_VAR NAME="searchfield" -->&amp;frameworkcode=<!-- TMPL_VAR NAME="frameworkcode" --><!--TMPL_IF Name="select_display"-->&amp;select_display=True<!--/TMPL_IF -->">&lt;&lt; Previous</a>
209         <!-- /TMPL_IF --><form class="inline" action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
210     <input type="hidden" name="op" value="add_form" />
211     <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post">
212         <input type="hidden" name="op" value="add_form" />
213         <input type="hidden" name="searchfield" value="<!-- TMPL_VAR NAME="searchfield"-->" />
214     <input type="hidden" name="frameworkcode" value="<!-- TMPL_VAR NAME="frameworkcode" -->" />
215         <input type="submit" value="Add Tag" />
216     </form>
217         <!-- TMPL_IF NAME="nextpage" -->
218             <a href="<!-- TMPL_VAR NAME="script_name" -->?offset=<!-- TMPL_VAR NAME="nextpage" -->&amp;searchfield=<!-- TMPL_VAR NAME="searchfield" -->&amp;frameworkcode=<!-- TMPL_VAR NAME="frameworkcode" --><!--TMPL_IF Name="select_display"-->&amp;select_display=True<!--/TMPL_IF -->">Next &gt;&gt;</a>
219         <!-- /TMPL_IF -->
220
221 <!-- /TMPL_IF -->
222
223
224 </div>
225 </div>
226 </div>
227
228 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
229 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->