New NPL templates
[koha_gimpoz] / koha-tmpl / intranet-tmpl / npl / en / thesaurus_popup.tmpl
1         <html>
2         <head>
3         <title>Thesaurus value builder for category <!-- TMPL_VAR name="category" --></title>
4         </head>
5         <body>
6         <form name="f_pop" action="thesaurus_popup.pl" method="post">
7         <textarea name="result" rows=10 cols=60><!-- TMPL_VAR name="result" --></textarea></br>
8         <p><input type="text" name="search_string" value="<!-- TMPL_VAR name="search_string" -->">
9         <input type="hidden" name="category" value="<!-- TMPL_VAR name="category" -->">
10         <input type="hidden" name="index" value="<!-- TMPL_VAR name="index" -->">
11         <input type="hidden" name="op" value="search">
12         <input type="submit" value="Search">
13         <input type="button" value="END" onClick="javascript:report()">
14         </form>
15 <!-- TMPL_IF name="search_string" -->
16         <form name="f2_pop" action="thesaurus_popup.pl" method="post">
17         <!-- TMPL_VAR name="select_list" -->
18         <input type="hidden" name="category" value="<!-- TMPL_VAR name="category" -->">
19         <input type="hidden" name="index" value="<!-- TMPL_VAR name="index" -->">
20         <input type="hidden" name="op" value="select">
21         <input type="hidden" name="result" value="<!-- TMPL_VAR name="result" -->">
22         <input type="submit" name="OK" value="OK">
23         </form>
24 <!-- /TMPL_IF -->
25         <form name="f3_pop"  action="thesaurus_popup.pl" method="post">
26         <input type="hidden" name="index" value="<!-- TMPL_VAR name="index" -->">
27         <input type="hidden" name="category" value="<!-- TMPL_VAR name="category" -->">
28         <input type="hidden" name="op" value="add">
29         insert a new authority : <input type="text" name="insert">
30         <input type="submit" name="NEW" value="NEW">
31         </form>
32                 <script>
33                 function report() {
34                         opener.document.f.field_value[<!-- TMPL_VAR name="index" -->].value= document.f_pop.result.value;
35                         self.close();
36                         return false;
37                 }
38                 </script>
39                 </body>
40                 </html>