Bug 11299: (follow-up) Rebase on recent changes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / unimarc_field_124f.tt
1 [% SET footerjs = 1 %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>UNIMARC field 124f builder</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 </head>
6
7 <body id="cat_unimarc_field_124f" class="cat" style="padding:1em;">
8 <h3>UNIMARC field 124f builder</h3>
9 <form name="f_pop" action="">
10 <table>
11         <tr>
12         <td><label for="f1">Name of satellite for remote sensing image:</label></td>
13                 <td>
14                         <select name="f1" id="f1" size="1">
15                         [% IF ( f1aa ) %]
16                                 <option value="aa" selected="selected">Tiros</option>
17                         [% ELSE %]
18                                 <option value="aa">Tiros</option>
19                         [% END %]
20                         [% IF ( f1ab ) %]
21                                 <option value="ab" selected="selected">ATS</option>
22                         [% ELSE %]
23                                 <option value="ab">ATS</option>
24                         [% END %]
25                         [% IF ( f1ac ) %]
26                                 <option value="ac" selected="selected">NOAA</option>
27                         [% ELSE %]
28                                 <option value="ac">NOAA</option>
29                         [% END %]
30                         [% IF ( f1ad ) %]
31                                 <option value="ad" selected="selected">Nimbus</option>
32                         [% ELSE %]
33                                 <option value="ad">Nimbus</option>
34                         [% END %]
35                         [% IF ( f1ae ) %]
36                                 <option value="ae" selected="selected">METEOSAT</option>
37                         [% ELSE %]
38                                 <option value="ae">METEOSAT</option>
39                         [% END %]
40                         [% IF ( f1ma ) %]
41                                 <option value="ma" selected="selected">Explorer I</option>
42                         [% ELSE %]
43                                 <option value="ma">Explorer I</option>
44                         [% END %]
45                         [% IF ( f1mb ) %]
46                                 <option value="mb" selected="selected">Explorer II</option>
47                         [% ELSE %]
48                                 <option value="mb">Explorer II</option>
49                         [% END %]
50                         [% IF ( f1ga ) %]
51                                 <option value="ga" selected="selected">ERTS</option>
52                         [% ELSE %]
53                                 <option value="ga">ERTS</option>
54                         [% END %]
55                         [% IF ( f1gb ) %]
56                                 <option value="gb" selected="selected">Landsat I</option>
57                         [% ELSE %]
58                                 <option value="gb">Landsat I</option>
59                         [% END %]
60                         [% IF ( f1gc ) %]
61                                 <option value="gc" selected="selected">Landsat II</option>
62                         [% ELSE %]
63                                 <option value="gc">Landsat II</option>
64                         [% END %]
65                         [% IF ( f1gd ) %]
66                                 <option value="gd" selected="selected">Landsat III</option>
67                         [% ELSE %]
68                                 <option value="gd">Landsat III</option>
69                         [% END %]
70                         [% IF ( f1ge ) %]
71                                 <option value="ge" selected="selected">Seasat</option>
72                         [% ELSE %]
73                                 <option value="ge">Seasat</option>
74                         [% END %]
75                         [% IF ( f1gf ) %]
76                                 <option value="gf" selected="selected">Skylab</option>
77                         [% ELSE %]
78                                 <option value="gf">Skylab</option>
79                         [% END %]
80                         [% IF ( f1gg ) %]
81                                 <option value="gg" selected="selected">Spacelab</option>
82                         [% ELSE %]
83                                 <option value="gg">Spacelab</option>
84                         [% END %]
85                         [% IF ( f1gk ) %]
86                                 <option value="gk" selected="selected">Spot 1</option>
87                         [% ELSE %]
88                                 <option value="gk">Spot 1</option>
89                         [% END %]
90                         [% IF ( f1gl ) %]
91                                 <option value="gl" selected="selected">Spot 2</option>
92                         [% ELSE %]
93                                 <option value="gl">Spot 2</option>
94                         [% END %]
95                         [% IF ( f1gm ) %]
96                                 <option value="gm" selected="selected">Spot 3</option>
97                         [% ELSE %]
98                                 <option value="gm">Spot 3</option>
99                         [% END %]
100                         [% IF ( f1gz ) %]
101                                 <option value="gz" selected="selected">other</option>
102                         [% ELSE %]
103                                 <option value="gz">other</option>
104                         [% END %]
105                         </select>
106                 </td></tr>
107 </table>
108 <fieldset class="action"><input type="button" value="OK" onclick="report();" /> <a href="#" class="cancel close">Cancel</a></fieldset>
109 </form>
110
111 [% MACRO jsinclude BLOCK %]
112     <script type="text/javascript">
113         function report() {
114                 var doc   = opener.document;
115                 var field = doc.getElementById("[% index | html %]");
116                 field.value =  document.f_pop.f1.value;
117             self.close();
118             return false;
119         }
120     </script>
121 [% END %]
122
123 [% INCLUDE 'intranet-bottom.inc' popup_window=1 %]