change link to newbiblio to neworderempty.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / admin / stopwords.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 Koha -- System Administration: Stop Words Administration
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-admin.inc" -->
7
8 <script>
9   function toUC(f) {
10     var x=f.value.toUpperCase();
11     f.value=x;
12     return true;
13   }
14 </script>
15
16 <h1>Stop Words Administration</h1>
17
18 <ul id="admin_stopwords_informations">
19 <!-- TMPL_IF NAME="stopword_added" -->
20   <li>Stop Words Added</li>
21 <!-- /TMPL_IF --> <!-- stopword_added -->
22
23 <!-- TMPL_IF NAME="delete_confirmed" -->
24   <li>Stop Words Deleted</li>
25 <!-- /TMPL_IF --> <!-- delete_confirmed -->
26 </ul>
27
28 <form action="<!-- TMPL_VAR NAME=script_name -->" method="post">
29
30 <!-- TMPL_IF NAME="delete_confirm" -->
31   <fieldset id="admin_stopwords_confirmation">
32     <legend>Confirm</legend>
33
34     <p>Confirm Deletion of the following Stop Words:</p>
35     <ul>
36   <!-- TMPL_LOOP NAME="stopwords_to_delete" -->
37       <li>
38         <!-- TMPL_VAR NAME="word" -->
39         <input type="hidden" name="confirmed_stopwords[]" value="<!-- TMPL_VAR NAME="word" -->" />
40       </li>
41   <!-- /TMPL_LOOP -->
42     </ul>
43
44     <p id="action">
45       <input type="submit" name="confirmDeletion" value="Confirm Deletion" />
46       <input type="submit" name="doNotConfirmDeletion" value="Do Not Confirm" />
47     </p>
48   </fieldset>
49 <!-- /TMPL_IF -->
50
51   <fieldset id="admin_stopwords_add">
52     <legend>Add Stop Words</legend>
53
54     <table>
55       <tr>
56         <th>Stop Words</th>
57         <td>
58           <input type="text" name="word" size="50" maxlength="250" onblur="toUC(this);" />
59         </td>
60       </tr>
61     </table>
62
63     <p id="action">
64       <input type="submit" name="add" value="Add Stop Words" />
65       <input type="reset" value="Reset" />
66     </p>
67   </fieldset>
68
69   <fieldset id="admin_stopwords_select">
70     <legend>Stop Words selection</legend>
71
72     <p>
73       <input type="text" name="searchfield" value="<!-- TMPL_VAR NAME="searchfield" -->" />
74       <input type="submit" name="filter" value="Filter" />
75     </p>
76
77     <ul>
78 <!-- TMPL_LOOP NAME="loop" -->
79       <li style="display: inline;">
80         <label>
81           <input type="checkbox" name="stopwords[]" value="<!-- TMPL_VAR NAME="word" -->" />
82           <!-- TMPL_VAR NAME="word" -->
83         </label>
84       </li>
85 <!-- /TMPL_LOOP -->
86     </ul>
87
88     <div class="paginationBar"><!-- TMPL_VAR NAME="pagination_bar" --></div>
89
90     <p id="action">
91       <input type="submit" name="deleteSelected" value="Delete selected Stop Words" />
92       <input type="reset" value="Reset" />
93     </p>
94   </fieldset>
95 </form>
96
97 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->