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 <TMPL_INCLUDE NAME="top.tmpl"> |
|
6 <p>Total bookmarks: <TMPL_VAR total></p> |
|
7 <form action="?action=index&view=dynamic" method="get" name="keywords"> |
|
8 <fieldset class="keywords"> |
|
9 <legend>Keywords:</legend> |
|
10 <p> |
|
11 <label>Include: |
|
12 <select multiple name="sel" onchange="submit()" |
|
13 size="<TMPL_VAR kw_size>"> |
|
14 <TMPL_LOOP Keywords> |
|
15 <TMPL_UNLESS excluded> |
|
16 <option value="<TMPL_VAR id>" |
|
17 <TMPL_IF selected>selected</TMPL_IF> |
|
18 ><TMPL_VAR keyword> (<TMPL_VAR count>)</option> |
|
19 </TMPL_UNLESS> |
|
20 </TMPL_LOOP></select> |
|
21 <label>Exclude: |
|
22 <select multiple name="exc" onchange="submit()" |
|
23 size="<TMPL_VAR kw_size>"> |
|
24 <TMPL_LOOP Keywords> |
|
25 <TMPL_UNLESS selected> |
|
26 <option value="<TMPL_VAR id>" |
|
27 <TMPL_IF excluded>selected</TMPL_IF> |
|
28 ><TMPL_VAR keyword> (<TMPL_VAR count>)</option> |
|
29 </TMPL_UNLESS> |
|
30 </TMPL_LOOP></select> |
|
31 </p> |
|
32 <button>Lookup</button> |
|
33 </fieldset> |
|
34 </form> |
|
35 <TMPL_INCLUDE NAME="bkmarks.tmpl"> |
|
36 <hr/> |
|
37 <a href="?action=index&view=folder">Switch to folder view</a> |
|
38 <TMPL_INCLUDE NAME="footers.tmpl"> |
|
39 </body> |
|
40 </html> |
|
41 <!-- Keep this comment at the end of the file |
|
42 Local variables: |
|
43 mode: sgml |
|
44 sgml-omittag:t |
|
45 sgml-shorttag:t |
|
46 sgml-namecase-general:t |
|
47 sgml-general-insert-case:lower |
|
48 sgml-minimize-attributes:nil |
|
49 sgml-always-quote-attributes:t |
|
50 sgml-indent-step:2 |
|
51 sgml-indent-data:nil |
|
52 sgml-parent-document:nil |
|
53 sgml-exposed-tags:nil |
|
54 sgml-local-catalogs:nil |
|
55 sgml-local-ecat-files:nil |
|
56 End: |
|
57 vi: syntax=html |
|
58 --> |
|