Bug 2780 - Capitalize strings consistently (Cataloging plugins)
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / unimarc_field_124e.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>UNIMARC field 124e builder</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body id="cat_unimarc_field_124e" class="cat" style="padding:1em;">
6 <h3>UNIMARC field 124e builder</h3>
7 <form name="f_pop" action="">
8 <table>
9         <tr>
10         <td><label for="f1">Category of satellite for remote sensing image:</label></td>
11                 <td>
12                         <select name="f1" id="f1" size="1">
13
14                         [% IF ( f1a ) %]
15                                 <option value="a" selected="selected">meteorological</option>
16                         [% ELSE %]
17                                 <option value="a">meteorological</option>
18                         [% END %]
19                         [% IF ( f1b ) %]
20                                 <option value="b" selected="selected">earth resources</option>
21                         [% ELSE %]
22                                 <option value="b">earth resources</option>
23                         [% END %]
24                         [% IF ( f1c ) %]
25                                 <option value="c" selected="selected">space observing</option>
26                         [% ELSE %]
27                                 <option value="c">space observing</option>
28                         [% END %]
29                         </select>
30                 </td></tr>
31 </table>
32 <fieldset class="action"><input type="button" value="OK" onclick="report();" /> <a href="#" class="cancel close">Cancel</a></fieldset>
33 </form>
34 <script type="text/javascript">
35 //<![CDATA[
36         function report() {
37             var doc     = opener.document; 
38             var field   = doc.getElementById("[% index %]");
39             field.value =  document.f_pop.f1.value;
40             window.close();
41             return false;
42         }
43 //]]>
44 </script>
45
46 [% INCLUDE 'popup-bottom.inc' %]