Bug 13941: [2/2] Fix <body> tags missing id/class
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / unimarc_field_124g.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>UNIMARC field 124g builder</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body id="cat_unimarc_field_124g" class="cat" style="padding:1em;">
6 <h3>UNIMARC field 124g builder</h3>
7 <form name="f_pop" action="">
8 <table>
9         <tr>
10         <td><label for="f1">Recording technique for remote sensing image:</label></td>
11                 <td>
12                         <select name="f1" id="f1" size="1">
13
14                         [% IF ( f1aa ) %]
15                                 <option value="aa" selected="selected">video recording</option>
16                         [% ELSE %]
17                                 <option value="aa">video recording</option>
18                         [% END %]
19                         [% IF ( f1ab ) %]
20                                 <option value="ab" selected="selected">false colour photography</option>
21                         [% ELSE %]
22                                 <option value="ab">false colour photography</option>
23                         [% END %]
24                         [% IF ( f1ac ) %]
25                                 <option value="ac" selected="selected">multispectral photography</option>
26                         [% ELSE %]
27                                 <option value="ac">multispectral photography</option>
28                         [% END %]
29                         [% IF ( f1ad ) %]
30                                 <option value="ad" selected="selected">multispectral scanning</option>
31                         [% ELSE %]
32                                 <option value="ad">multispectral scanning</option>
33                         [% END %]
34                         [% IF ( f1av ) %]
35                                 <option value="av" selected="selected">combination of various light emission techniques</option>
36                         [% ELSE %]
37                                 <option value="av">combination of various light emission techniques</option>
38                         [% END %]
39                         [% IF ( f1da ) %]
40                                 <option value="da" selected="selected">infrared line scanning</option>
41                         [% ELSE %]
42                                 <option value="da">infrared line scanning</option>
43                         [% END %]
44                         [% IF ( f1dv ) %]
45                                 <option value="dv" selected="selected">combination of various thermal infrared scanning</option>
46                         [% ELSE %]
47                                 <option value="dv">combination of various thermal infrared scanning</option>
48                         [% END %]
49                         [% IF ( f1ga ) %]
50                 <option value="ga" selected="selected">Sidelooking airbone radar</option>
51                         [% ELSE %]
52                 <option value="ga">Sidelooking airbone radar</option>
53                         [% END %]
54                         [% IF ( f1gb ) %]
55                 <option value="gb" selected="selected">Synthetic aperture radar</option>
56                         [% ELSE %]
57                 <option value="gb">Synthetic aperture radar</option>
58                         [% END %]
59                         [% IF ( f1gc ) %]
60                                 <option value="gc" selected="selected">passive microwave mapping</option>
61                         [% ELSE %]
62                                 <option value="gc">passive microwave mapping</option>
63                         [% END %]
64                         </select>
65                 </td></tr>
66 </table>
67 <fieldset class="action"><input type="button" value="OK" onclick="report();" /> <a href="#" class="cancel close">Cancel</a></fieldset>
68 </form>
69 <script type="text/javascript">
70 //<![CDATA[
71         function report() {
72             var doc   = opener.document; 
73             var field = doc.getElementById("[% index %]");
74             field.value =  document.f_pop.f1.value;
75             window.close();
76             return false;
77         }
78 //]]>
79 </script>
80
81 [% INCLUDE 'popup-bottom.inc' %]