a6f5a67c64def184b478dd391a6182c93206d05d
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / unimarc_field_127.tt
1 [% SET footerjs = 1 %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>UNIMARC field 127 builder</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 </head>
6
7 <body id="cat_unimarc_field_127" class="cat" style="padding:1em;">
8 <h1>UNIMARC field 127 builder</h1>
9 <form name="f_pop" action="">
10 <table>
11 <tr><th colspan="9">(Complete with 0 on the left)</th></tr>
12 <tr>          <td><label for="f1">Hours:</label></td>
13                          <td><input type="text" name="f1" id="f1" maxlength="2"
14                          size="3"
15                    value="[% f1 | html %]" /></td>
16           <td><label for="f2">Minutes:</label></td>
17                          <td><input type="text" name="f2" id="f2" maxlength="2"
18                          size="3"
19                    value="[% f2 | html %]" /></td>
20           <td><label for="f3">Seconds:</label></td>
21                          <td><input type="text" name="f3" id="f3" maxlength="2"
22                          size="3"
23                    value="[% f3 | html %]" /></td>
24 </tr>
25 </table>
26 <fieldset class="action"><input type="button" value="OK" onclick="report();" /> <a href="#" class="cancel close">Cancel</a></fieldset>
27 </form>
28
29 [% MACRO jsinclude BLOCK %]
30     <script>
31         function report() {
32             document.f_pop.f1.value=document.f_pop.f1.value+'   ';
33             document.f_pop.f2.value=document.f_pop.f2.value+'  ';
34             document.f_pop.f3.value=document.f_pop.f3.value+'  ';
35
36             document.f_pop.f1.value=document.f_pop.f1.value.substring(0,2);
37             document.f_pop.f2.value=document.f_pop.f2.value.substring(0,2);
38             document.f_pop.f3.value=document.f_pop.f3.value.substring(0,2);
39
40             var doc = opener.document;
41             var field = doc.getElementById("[% index | html %]");
42
43             field.value = document.f_pop.f1.value+document.f_pop.f2.value+document.f_pop.f3.value;
44             self.close();
45             return false;
46           }
47     </script>
48 [% END %]
49
50 [% INCLUDE 'intranet-bottom.inc' popup_window=1 %]