|
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 "top.tmpl"> |
|
6 <TMPL_IF folder> |
|
7 <p>Parents: |
|
8 <TMPL_LOOP Parents> |
|
9 <TMPL_IF id> : </TMPL_IF> |
|
10 <a href="?action=index&view=folder&folder=<TMPL_VAR id>"><TMPL_IF id><TMPL_VAR name> |
|
11 <TMPL_ELSE>Top </TMPL_IF> (<TMPL_VAR count>)</a> |
|
12 </TMPL_LOOP> |
|
13 </p> |
|
14 </TMPL_IF> |
|
15 <h2><TMPL_IF folder><TMPL_VAR name><TMPL_ELSE>Main Folder</TMPL_IF> |
|
16 (<TMPL_VAR subtotal>/<TMPL_VAR total>)</h2> |
|
17 <DIV class="subfolders"> |
|
18 <form action="?action=index&view=folder&folder=<TMPL_VAR folder>" method="post" name="edit_folders"> |
|
19 <input type="hidden" name="folder" value="<TMPL_VAR folder>"/> |
|
20 <input type="hidden" name="view" value="folder"/> |
|
21 <input type="hidden" name="action" value="delete"/> |
|
22 <ul> |
|
23 <TMPL_LOOP Subfolders> |
|
24 <li><button name="delete" value="<TMPL_VAR id>">Delete</button> |
|
25 <a href="?action=index&view=folder&folder=<TMPL_VAR id>"><TMPL_VAR name> |
|
26 (<TMPL_VAR count>)</a></li> |
|
27 </TMPL_LOOP> |
|
28 </ul> |
|
29 </form> |
|
30 </div> |
|
31 <form action="?action=index&view=folder&folder=<TMPL_VAR folder>" method="post" name="add_folder"> |
|
32 <label>Add subfolder with keyword: |
|
33 <input type="hidden" name="folder" value="<TMPL_VAR folder>"/> |
|
34 <input type="hidden" name="view" value="folder"/> |
|
35 <select name="sel" size="1"> |
|
36 <TMPL_LOOP Keywords> |
|
37 <option value="<TMPL_VAR id>" |
|
38 ><TMPL_VAR keyword> (<TMPL_VAR removed>/<TMPL_VAR count>)</option> |
|
39 </TMPL_LOOP></select> |
|
40 <button name="action" value="add">Add</button> |
|
41 </form> |
|
42 <hr> |
|
43 <TMPL_INCLUDE NAME="bkmarks.tmpl"> |
|
44 <hr> |
|
45 <a href="?action=index&view=dynamic">Switch to dynamic view</a> |
|
46 <TMPL_INCLUDE NAME="footers.tmpl"> |
|
47 </body> |
|
48 </html> |
|
49 <!-- Keep this comment at the end of the file |
|
50 Local variables: |
|
51 mode: sgml |
|
52 sgml-omittag:t |
|
53 sgml-shorttag:t |
|
54 sgml-namecase-general:t |
|
55 sgml-general-insert-case:lower |
|
56 sgml-minimize-attributes:nil |
|
57 sgml-always-quote-attributes:t |
|
58 sgml-indent-step:2 |
|
59 sgml-indent-data:nil |
|
60 sgml-parent-document:nil |
|
61 sgml-exposed-tags:nil |
|
62 sgml-local-catalogs:nil |
|
63 sgml-local-ecat-files:nil |
|
64 End: |
|
65 vi: syntax=html |
|
66 --> |