Merge remote branch 'kc/master' into new/bug_3013
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / value_builder / unimarc_field_106.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>UNIMARC Field 106 builder</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body style="padding:1em;">
6 <h3>UNIMARC Field 106 builder</h3>
7 <form name="f_pop" action="">
8 <table>
9         <tr>
10                 <td><label for="f1">Form of item: Coded Data: Medium Designator (Not repeatable)</label></td>
11                 <td>
12                         <select name="f1" id="f1" size="1">
13             
14                         <!-- TMPL_IF name="f1r" -->
15                                 <option value="r" selected="selected">regular print</option>
16                         <!-- TMPL_ELSE -->
17                                 <option value="r">regular print</option>
18                         <!-- /TMPL_IF -->
19                         <!-- TMPL_IF name="f1b" -->
20                                 <option value="d" selected="selected">large print</option>
21                         <!-- TMPL_ELSE -->
22                                 <option value="d">large print</option>
23                         <!-- /TMPL_IF -->
24                         <!-- TMPL_IF name="f1e" -->
25                                 <option value="e" selected="selected">newspaper format</option>
26                         <!-- TMPL_ELSE -->
27                                 <option value="e">newspaper format</option>
28                         <!-- /TMPL_IF -->
29
30                         <!-- TMPL_IF name="f1f" -->
31                                 <option value="f" selected="selected">Braille or Moon script</option>
32                         <!-- TMPL_ELSE -->
33                                 <option value="f">Braille or Moon script</option>
34         
35                         <!-- /TMPL_IF -->
36                         <!-- TMPL_IF name="f1g" -->
37                                 <option value="g" selected="selected">microprint</option>
38                         <!-- TMPL_ELSE -->
39                                 <option value="g">microprint</option>
40         
41                         <!-- /TMPL_IF -->
42                         <!-- TMPL_IF name="f1h" -->
43                                 <option value="h" selected="selected">handwritten</option>
44                         <!-- TMPL_ELSE -->
45                                 <option value="h">handwritten</option>
46         
47                         <!-- /TMPL_IF -->
48                         <!-- TMPL_IF name="f1i" -->
49                                 <option value="i" selected="selected">multimedia (e.g. an item in regular print with a microfiche
50 supplement)</option>
51                         <!-- TMPL_ELSE -->
52                                 <option value="i">multimedia (e.g. an item in regular print with a microfiche
53 supplement)</option>
54         
55                         <!-- /TMPL_IF -->
56                         <!-- TMPL_IF name="f1j" -->
57                                 <option value="j" selected="selected">mini-print</option>
58                         <!-- TMPL_ELSE -->
59                                 <option value="j">mini-print</option>
60                                 
61                         <!-- /TMPL_IF -->
62                         <!-- TMPL_IF name="f1s" -->
63                                 <option value="s" selected="selected">electronic</option>
64                         <!-- TMPL_ELSE -->
65                                 <option value="s">electronic</option>
66                                 
67                         <!-- /TMPL_IF -->
68                         <!-- TMPL_IF name="f1t" -->
69                                 <option value="t" selected="selected">microform</option>
70                         <!-- TMPL_ELSE -->
71                                 <option value="t">microform</option>
72         
73                         <!-- /TMPL_IF -->
74                         <!-- TMPL_IF name="f1z" -->
75                                 <option value="z" selected="selected">other form of material</option>
76                         <!-- TMPL_ELSE -->
77                                 <option value="z">other form of material</option>
78         
79                         <!-- /TMPL_IF -->
80                         </select>
81                 </td>
82         </tr>
83 </table>
84 <fieldset class="action"><input type="button" value="OK"  onclick="report();" /> <a href="#" class="cancel close">Cancel</a></fieldset>
85 </form>
86 <script type="text/javascript">
87 //<![CDATA[
88 function report() {
89         var doc   = opener.document; 
90         var field = doc.getElementById("<!-- TMPL_VAR NAME='index'-->");
91     
92         field.value = document.f_pop.f1.value;
93         self.close();
94         return false;
95         }
96
97 //]]>
98 </script>
99
100
101 <!-- TMPL_INCLUDE NAME="popup-bottom.inc" -->