memberentryC.tmpl:add test to modify link name
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / authorities / authorities-home.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 Koha -- Authorities
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-authorities.inc" -->
7
8 <fieldset id="authorities_authorities_home_search">
9   <legend>Authority search</legend>
10
11   <form name="f" action="/cgi-bin/koha/authorities/authorities-home.pl" method="post">
12     <input type="hidden" name="op" value="do_search">
13     <input type="hidden" name="type" value="intranet">
14     <input type="hidden" name="nbstatements" value="<!-- TMPL_VAR NAME="nbstatements" -->">
15
16     <table>
17       <tr>
18         <th>
19           <label for="authtypecode">Search on</label>
20         </th>
21         <td colspan="2">
22           <select id="authtypecode" name="authtypecode">
23 <!-- TMPL_LOOP NAME="authtypesloop" -->
24   <!-- TMPL_IF name="selected" -->
25             <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="authtypetext" --></option>
26   <!-- TMPL_ELSE -->
27             <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="authtypetext" --></option>
28   <!-- /TMPL_IF -->
29 <!-- /TMPL_LOOP -->
30           </select>
31         </td>
32       </tr>
33       <tr>
34         <th>
35           <label for="value_mainentry">Main entry</label>
36           <input type="hidden" name="marclist" value="mainentry">
37           <input type="hidden" name="and_or" value="and">
38           <input type="hidden" name="excluding" value="">
39         </th>
40         <td>
41           <select name="operator">
42             <option value="contains">contains</option>
43             <option value="start">start by</option>
44           </select>
45         </td>
46         <td>
47           <input id="value_mainentry" type="text" name="value" value="<!-- TMPL_VAR NAME="value" -->">
48         </td>
49       </tr>
50
51       <tr>
52         <th>
53           <label for="value_anywhere">Anywhere</label>
54           <input type="hidden" name="marclist" value="">
55           <input type="hidden" name="and_or" value="and">
56           <input type="hidden" name="excluding" value="">
57         </th>
58         <td>
59           <select name="operator">
60             <option value="contains">contains</option>
61             <option value="start">start by</option>
62           </select>
63         </td>
64         <td>
65           <input id="value_anywhere" type="text" name="value" value="<!-- TMPL_VAR NAME="value" -->">
66         </td>
67       </tr>
68     </table>
69     
70     <div id="action">
71       <input type="submit" value="Start search">
72     </div>
73   </form>
74 </fieldset>
75     
76 <fieldset id="authorities_authorities_home_add">
77   <legend>Add authority</legend>
78
79   <form name="f2" method="post" action="authorities.pl">
80     <table>
81       <tr>
82         <th>
83           <label for="add_authtypecode">Authority type</label>
84         </th>
85         <td>
86           <select id="add_authtypecode" name="authtypecode">
87 <!-- TMPL_LOOP name="authtypesloop" -->
88   <!-- TMPL_IF name="selected" -->
89             <option value="<!-- TMPL_VAR name="value" -->" selected="selected"><!-- TMPL_VAR name="authtypetext" --></option>
90   <!-- TMPL_ELSE -->
91             <option value="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="authtypetext" --></option>
92   <!-- /TMPL_IF -->
93 <!-- /TMPL_LOOP -->
94           </select>
95         </td>
96       </tr>
97     </table>
98
99     <div id="action">
100       <input type="submit" value="Add" class="button authority">
101     </div>
102   </form>
103 </fieldset>
104
105 <!-- TMPL_INCLUDE name="intranet-bottom.inc" -->