Bug 5917 / Bug 6085 : Fixing not being able to change language
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / unimarc_field_124b.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>UNIMARC Field 124b builder</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body style="padding:1em;">
6 <h3>UNIMARC Field 124b builder</h3>
7 <form name="f_pop" action="">
8 <table>
9         <tr>
10                 <td><label for="f1">Form of Cartographic Item:</label></td>
11                 <td>
12                         <select name="f1" id="f1" size="1">
13             
14                         <!-- TMPL_IF name="f1a" -->
15                                 <option value="a" selected="selected">atlas</option>
16                         <!-- TMPL_ELSE -->
17                                 <option value="a">atlas</option>
18                         <!-- /TMPL_IF -->
19                         <!-- TMPL_IF name="f1b" -->
20                                 <option value="b" selected="selected">diagram</option>
21                         <!-- TMPL_ELSE -->
22                                 <option value="b">diagram</option>
23                         <!-- /TMPL_IF -->
24                         <!-- TMPL_IF name="f1c" -->
25                                 <option value="c" selected="selected">globe</option>
26                         <!-- TMPL_ELSE -->
27                                 <option value="c">globe</option>
28                         <!-- /TMPL_IF -->
29                         <!-- TMPL_IF name="f1d" -->
30                                 <option value="d" selected="selected">map</option>
31                         <!-- TMPL_ELSE -->
32                                 <option value="d">map</option>
33                         <!-- /TMPL_IF -->
34                         <!-- TMPL_IF name="f1e" -->
35                                 <option value="e" selected="selected">model</option>
36                         <!-- TMPL_ELSE -->
37                                 <option value="e">model</option>
38                         <!-- /TMPL_IF -->
39                         <!-- TMPL_IF name="f1f" -->
40                                 <option value="f" selected="selected">profile</option>
41                         <!-- TMPL_ELSE -->
42                                 <option value="f">profile</option>
43                         <!-- /TMPL_IF -->
44                         <!-- TMPL_IF name="f1g" -->
45                                 <option value="g" selected="selected">remote sensing image</option>
46                         <!-- TMPL_ELSE -->
47                                 <option value="g">remote sensing image</option>
48                         <!-- /TMPL_IF -->
49                         <!-- TMPL_IF name="f1h" -->
50                                 <option value="h" selected="selected">section</option>
51                         <!-- TMPL_ELSE -->
52                                 <option value="h">section</option>
53                         <!-- /TMPL_IF -->
54                         <!-- TMPL_IF name="f1i" -->
55                                 <option value="i" selected="selected">view</option>
56                         <!-- TMPL_ELSE -->
57                                 <option value="i">view</option>
58                         <!-- /TMPL_IF -->
59                         <!-- TMPL_IF name="f1j" -->
60                                 <option value="j" selected="selected">plan</option>
61                         <!-- TMPL_ELSE -->
62                                 <option value="j">plan</option>
63                         <!-- /TMPL_IF -->
64                         <!-- TMPL_IF name="f1z" -->
65                                 <option value="z" selected="selected">other</option>
66                         <!-- TMPL_ELSE -->
67                                 <option value="z">other</option>
68                         <!-- /TMPL_IF -->
69                         </select>
70                 </td></tr>
71 </table>
72 <fieldset class="action"><input type="button" value="OK" onclick="report();" /> <a href="#" class="cancel close">Cancel</a></fieldset>
73 </form>
74 <script type="text/javascript">
75 //<![CDATA[
76         function report() {
77             var doc   = opener.document; 
78             var field = doc.getElementById("<!-- TMPL_VAR NAME='index'-->");
79         
80             field.value =  document.f_pop.f1.value;
81             self.close();
82             return false;
83         }
84 //]]>
85 </script>
86
87 <!-- TMPL_INCLUDE NAME="popup-bottom.inc" -->