More applying standard dialog styles to confirmation messages
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / authtypes.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Administration &rsaquo; <!-- TMPL_IF NAME="add_form" --><!-- TMPL_IF NAME="authtypecode" --> Authority Types &rsaquo; Modify authority type<!-- TMPL_ELSE --> Authority Types &rsaquo; New authority type<!-- /TMPL_IF --><!-- TMPL_ELSE --><!-- TMPL_IF NAME="delete_confirm" -->Authority Types &rsaquo; Confirm Deletion of Authority Type<!-- TMPL_ELSE -->Authority Types<!-- /TMPL_IF --><!-- /TMPL_IF --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript">
5 //<![CDATA[
6 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
7 function isNotNull(f,noalert) {
8         if (f.value.length ==0) {
9                 return false;
10         }
11         return true;
12 }
13 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
14 function toUC(f) {
15         var x=f.value.toUpperCase();
16         f.value=x;
17         return true;
18 }
19 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
20 function isNum(v,maybenull) {
21 var n = new Number(v.value);
22 if (isNaN(n)) {
23         return false;
24         }
25 if (maybenull==0 && v.value=='') {
26         return false;
27 }
28 return true;
29 }
30 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
31 function isDate(f) {
32         var t = Date.parse(f.value);
33         if (isNaN(t)) {
34                 return false;
35         }
36 }
37 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
38 function Check(f) {
39         var ok=1;
40         var _alertString="";
41         var alertString2;
42         if (f.authtypecode.value.length==0) {
43                 _alertString += "\n- " + _("Authority type : code missing");
44         }
45         if (!(isNotNull(window.document.Aform.authtypetext,1))) {
46                 _alertString += "\n- " + _("Description missing");
47         }
48         if (_alertString.length==0) {
49                 document.Aform.submit();
50         } else {
51                 alertString2  = _("Form not submitted because of the following problem(s)");
52                 alertString2 += "\n------------------------------------------------------------------------------------\n";
53                 alertString2 += _alertString;
54                 alert(alertString2);
55         }
56 }
57 //]]>
58 </script>
59 </head>
60 <body>
61 <!-- TMPL_INCLUDE NAME="header.inc" -->
62 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
63
64 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; <!-- TMPL_IF NAME="add_form" --><!-- TMPL_IF NAME="authtypecode" --> <a href="/cgi-bin/koha/admin/authtypes.pl">Authority Types</a> &rsaquo; Modify authority type<!-- TMPL_ELSE --> <a href="/cgi-bin/koha/admin/authtypes.pl">Authority Types</a> &rsaquo; New authority type<!-- /TMPL_IF --><!-- TMPL_ELSE --><!-- TMPL_IF NAME="delete_confirm" --><a href="/cgi-bin/koha/admin/authtypes.pl">Authority Types</a> &rsaquo; Confirm Deletion of Authority Type<!-- TMPL_ELSE -->Authority Types<!-- /TMPL_IF --><!-- /TMPL_IF --></div>
65
66 <div id="doc3" class="yui-t2">
67    
68    <div id="bd">
69         <div id="yui-main">
70         <div class="yui-b">
71
72 <!-- TMPL_IF NAME="add_form" -->
73
74         <form action="<!-- TMPL_VAR NAME="script_name" -->" name="Aform" method="post">
75                 <fieldset class="rows">
76                 <!-- TMPL_IF NAME="authtypecode" -->
77                 <legend>Modify authority type</legend>
78         <!-- TMPL_ELSE -->
79                 <legend>New authority type</legend>
80         <!-- /TMPL_IF -->
81         <ol>
82                 <!-- TMPL_IF NAME="authtypecode" -->
83                 <input type="hidden" name="modif" value="1" />
84         <!-- /TMPL_IF -->
85                         <!-- TMPL_IF NAME="authtypecode" -->
86                                 <li><label for="authtypecode">Authority type<label><input type="hidden" name="op" value="add_validate" />
87                 <input type="hidden" name="checked" value="0" /><input type="hidden" name="authtypecode" value="<!-- TMPL_VAR NAME="authtypecode" -->" /><!-- TMPL_VAR NAME="authtypecode" --></li>
88                         <!-- TMPL_ELSE -->
89                                 <li><label for="authtypecode">Authority type: </label><input id="authtypecode" type="text" name="authtypecode" size="10" maxlength="10" onblur="toUC(this)" /></li>
90                         <!-- /TMPL_IF -->
91                 <li><label for="authtypetext">Description: </label><input type="text" id="authtypetext" name="authtypetext" size="40" maxlength="80" value="<!-- TMPL_VAR NAME="authtypetext" ESCAPE="HTML" -->" /></li>
92                 <li><label for="summary">Summary: </label><textarea id="summary" name="summary" cols="55" rows="7"><!-- TMPL_VAR NAME="summary" --></textarea></li>
93                 <li>
94                 <p>Enter here the number of the tag that will be reported in the biblio (subfield by subfield). For example, in UNIMARC, enter 200 to report every 200 subfield in the 70x biblio</p>
95                 <label for="auth_tag_to_report">Report tag: </label><input type="text" id="auth_tag_to_report" name="auth_tag_to_report" size="5" maxlength="3" value="<!-- TMPL_VAR NAME="auth_tag_to_report">" /></li></ol>
96         <input type="hidden" name="op" value="add_validate" /></fieldset>
97         <fieldset class="action"><input type="submit" value="Submit" onclick="Check(this.form); return false;" /><a class="cancel" href="/cgi-bin/koha/admin/authtypes.pl">Cancel</a></fieldset>
98         </form>
99 <!-- /TMPL_IF -->
100
101 <!-- TMPL_IF NAME="delete_confirm" -->
102                 <div class="dialog alert"><h3>Confirm Deletion of authority structure definition for <span class="ex">'<!-- TMPL_VAR NAME="authtypetext" -->' (<!-- TMPL_VAR NAME="authtypecode" -->)</span></h3>
103         <!-- TMPL_IF NAME="total" -->
104                 <p>This record is used <strong><!-- TMPL_VAR NAME="total" --></strong> times</p>
105         <!-- /TMPL_IF -->               
106                         <form action="<!-- TMPL_VAR NAME="script_name" -->" method="post"><input type="hidden" name="op" value="delete_confirmed" />
107                         <input type="hidden" name="authtypecode" value="<!-- TMPL_VAR NAME="authtypecode" -->" />
108                         <fieldset class="action"><input type="submit" class="approve" value="Yes, Delete" />
109                 </form>
110                 <form action="<!-- TMPL_VAR NAME="script_name" -->" method="get"><input type="submit" class="deny" value="No, Do Not Delete" /></form>
111                 </div>
112 <!-- /TMPL_IF -->
113
114 <!-- TMPL_IF NAME="else" -->
115
116 <div id="toolbar">
117         <script type="text/javascript">
118         //<![CDATA[
119         // prepare DOM for YUI Toolbar
120          $(document).ready(function() {
121             yuiToolbar();
122          });
123         // YUI Toolbar Functions
124         function yuiToolbar() {
125             new YAHOO.widget.Button("authtype");
126         } //]]>
127         </script>
128         <ul class="toolbar">
129         <li><a id="authtype" href="/cgi-bin/koha/admin/authtypes.pl?op=add_form">New Authority Type</a></li>
130 </ul></div>
131
132 <h1>Authority Types</h1>
133 <p>Define authority types, then authority MARC structure in the same way you define itemtypes and biblio MARC tag structure. Authority values are managed through plugins</p>
134 <table>
135         <tr>
136                 <th>Code</th>
137                 <th>Description</th>
138                 <th>Summary</th>
139                 <th>Tag reported</th>
140                 <th>&nbsp;</th>
141                 <th>Edit</th>
142                 <th>Delete</th>
143         </tr>
144         
145         <!-- TMPL_LOOP NAME="loop" -->
146                 <tr>
147                         <td><!-- TMPL_VAR NAME="authtypecode" --></td>
148                         <td><!-- TMPL_VAR NAME="authtypetext" --></td>
149                         <td><!-- TMPL_VAR NAME="summary" --></td>
150                         <td><!-- TMPL_VAR NAME="auth_tag_to_report" --></td>
151                         <td><a href="auth_tag_structure.pl?authtypecode=<!-- TMPL_VAR NAME="authtypecode" -->" class="button parameters" >MARC structure</a></td>
152                         <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=add_form&amp;authtypecode=<!-- TMPL_VAR NAME="authtypecode" escape="HTML" -->">Edit</a></td>
153                         <td><a href="<!-- TMPL_VAR NAME="script_name" -->?op=delete_confirm&amp;authtypecode=<!-- TMPL_VAR NAME="authtypecode" escape="HTML" -->">Delete</a></td>
154                 </tr>
155         <!-- /TMPL_LOOP -->
156 </table>
157
158         <!-- TMPL_IF NAME="previous" --><p><a href="<!-- TMPL_VAR NAME="previous" -->">&lt;&lt; Previous</a></p><!-- /TMPL_IF -->
159         <!-- TMPL_IF NAME="next" --><p><a href="<!-- TMPL_VAR NAME="next" -->">Next &gt;&gt;</a></p><!-- /TMPL_IF -->
160
161 <!-- /TMPL_IF -->
162 </div>
163 </div>
164 <div class="yui-b">
165 <!-- TMPL_INCLUDE NAME="admin-menu.inc" -->
166 </div>
167 </div>
168 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->