1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
2 <html> |
|
3 <TMPL_INCLUDE NAME="headers.tmpl"> |
|
4 <body> |
|
5 <h1><TMPL_VAR remote_user>'s Confirmation</h1> |
|
6 <form name="confirmation" method="post" action="kw_result.py"> |
|
7 <TMPL_IF confirm_delete> |
|
8 <p>Do you really want to remove those keywords?</p> |
|
9 <p> |
|
10 <TMPL_LOOP Selected> |
|
11 <input type="hidden" name="id" value="<TMPL_VAR id>"/> |
|
12 <TMPL_VAR keyword>; |
|
13 </TMPL_LOOP> |
|
14 </p> |
|
15 <button name="action" type="submit" |
|
16 value="<TMPL_VAR action>">Delete</button> |
|
17 </TMPL_IF> |
|
18 <TMPL_IF confirm_merge> |
|
19 <p>Selected keywords:</p> |
|
20 <p> |
|
21 <TMPL_LOOP Selected> |
|
22 <input type="hidden" name="id" value="<TMPL_VAR id>"/> |
|
23 <TMPL_VAR keyword>; |
|
24 </TMPL_LOOP> |
|
25 </p> |
|
26 <label>Merge them with: |
|
27 <select name="kw" multiple size="<TMPL_VAR kw_size"> |
|
28 <TMPL_LOOP Keywords> |
|
29 <option value="<TMPL_VAR id>"><TMPL_VAR keyword></option> |
|
30 </TMPL_LOOP></select><br/> |
|
31 <button name="action" type="submit" |
|
32 value="<TMPL_VAR action>">Merge</button><br/> |
|
33 <label><input type="checkbox" name="remove"/> Remove keywords?</label> |
|
34 </TMPL_IF> |
|
35 <TMPL_IF confirm_rename> |
|
36 <p>Rename<br/> |
|
37 <TMPL_LOOP Selected> |
|
38 <label><em><TMPL_VAR keyword></em> to |
|
39 <input type="hidden" name="id" value="<TMPL_VAR id>"/> |
|
40 <input type="text" name="name<TMPL_VAR id>" |
|
41 value="<TMPL_VAR keyword>"/></label><br/> |
|
42 </TMPL_LOOP> |
|
43 <button name="action" type="submit" |
|
44 value="<TMPL_VAR action>">Rename</button><br/> |
|
45 </TMPL_IF> |
|
46 <button name="action" type="submit" value="cancel">Cancel</button> |
|
47 </form> |
|
48 </body> |
|
49 </html> |
|
50 <!-- Keep this comment at the end of the file |
|
51 Local variables: |
|
52 mode: sgml |
|
53 sgml-omittag:t |
|
54 sgml-shorttag:t |
|
55 sgml-namecase-general:t |
|
56 sgml-general-insert-case:lower |
|
57 sgml-minimize-attributes:nil |
|
58 sgml-always-quote-attributes:t |
|
59 sgml-indent-step:2 |
|
60 sgml-indent-data:nil |
|
61 sgml-parent-document:nil |
|
62 sgml-exposed-tags:nil |
|
63 sgml-local-catalogs:nil |
|
64 sgml-local-ecat-files:nil |
|
65 End: |
|
66 vi: syntax=html |
|
67 --> |
|