Minor display changes.
[koha.git] / koha-tmpl / intranet-tmpl / default / de / thesaurus_popup.tmpl
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4         <title>Thesaurus value builder for category <!-- TMPL_VAR NAME="category" --></title>
5 </head>
6 <body>
7         <form name="f_pop" action="thesaurus_popup.pl" method="post">
8                 <textarea name="result" rows="10" cols="60"><!-- TMPL_VAR NAME="result" --></textarea></br>
9                 <br/><input type="button" value="OK" onClick="javascript:report()">
10                 <p>
11                         <input type="text" name="search_string" value="<!-- TMPL_VAR NAME="search_string" -->">
12                         <input type="hidden" name="category" value="<!-- TMPL_VAR NAME="category" -->">
13                         <input type="hidden" name="nohierarchy" value="<!-- TMPL_VAR NAME="nohierarchy" -->">
14                         <input type="hidden" name="index" value="<!-- TMPL_VAR NAME="index" -->">
15                         <input type="hidden" name="op" value="search">
16                         <input type="submit" value="Suche">
17                 </p>
18         </form>
19 <!-- TMPL_IF NAME="search_string" -->
20         <form name="f2_pop" action="thesaurus_popup.pl" method="post">
21         <!-- TMPL_VAR NAME="select_list" -->
22         <input type="hidden" name="category" value="<!-- TMPL_VAR NAME="category" -->">
23         <input type="hidden" name="nohierarchy" value="<!-- TMPL_VAR NAME="nohierarchy" -->">
24         <input type="hidden" name="index" value="<!-- TMPL_VAR NAME="index" -->">
25         <input type="hidden" name="op" value="select">
26         <input type="hidden" name="result" value="<!-- TMPL_VAR NAME="result" -->">
27         <input type="submit" name="OK" value="OK">
28         </form>
29 <!-- /TMPL_IF -->
30 <form name="f3_pop"  action="thesaurus_popup.pl" method="post">
31         <input type="hidden" name="index" value="<!-- TMPL_VAR NAME="index" -->">
32         <input type="hidden" name="category" value="<!-- TMPL_VAR NAME="category" -->">
33         <input type="hidden" name="nohierarchy" value="<!-- TMPL_VAR NAME="nohierarchy" -->">
34         <input type="hidden" name="op" value="add">
35         insert a new authority : <input type="text" name="insert">
36         <input type="submit" name="NEW" value="NEU">
37         </form>
38         <script language="javascript" type="text/javascript">
39                 function report() {
40                         opener.document.f.field_value[<!-- TMPL_VAR NAME="index" -->].value= document.f_pop.result.value;
41                         self.close();
42                         return false;
43                 }
44         </script>
45 </body>
46 </html>