author | Fabien Niñoles <fabien@tzone.org> |
Wed, 07 Jan 2009 17:26:18 -0500 | |
changeset 77 | 52b13b0616b8 |
parent 75 | 4f6b7b48322f |
permissions | -rw-r--r-- |
45 | 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> |
|
74
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
5 |
<TMPL_INCLUDE NAME="top.tmpl"> |
51
7015d65beb3d
[svn r1608] Correct the keywords bugs and some other in folder view, plus mutual
fabien
parents:
50
diff
changeset
|
6 |
<TMPL_IF folder> |
7015d65beb3d
[svn r1608] Correct the keywords bugs and some other in folder view, plus mutual
fabien
parents:
50
diff
changeset
|
7 |
<p>Parents: |
53 | 8 |
<TMPL_LOOP Parents> |
9 |
<TMPL_IF id> : </TMPL_IF> |
|
57 | 10 |
<a href="?action=index&view=folder&folder=<TMPL_VAR id>"><TMPL_IF id><TMPL_VAR name> |
53 | 11 |
<TMPL_ELSE>Top </TMPL_IF> (<TMPL_VAR count>)</a> |
12 |
</TMPL_LOOP> |
|
13 |
</p> |
|
51
7015d65beb3d
[svn r1608] Correct the keywords bugs and some other in folder view, plus mutual
fabien
parents:
50
diff
changeset
|
14 |
</TMPL_IF> |
53 | 15 |
<h2><TMPL_IF folder><TMPL_VAR name><TMPL_ELSE>Main Folder</TMPL_IF> |
16 |
(<TMPL_VAR subtotal>/<TMPL_VAR total>)</h2> |
|
45 | 17 |
<DIV class="subfolders"> |
74
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
18 |
<form action="" method="post" name="edit_folders"> |
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
19 |
<input type="hidden" name="action" value="folder"/> |
47
2781ac85b807
[svn r1604] Implement default_view preferences, which move things around a lot.
fabien
parents:
46
diff
changeset
|
20 |
<input type="hidden" name="folder" value="<TMPL_VAR folder>"/> |
2781ac85b807
[svn r1604] Implement default_view preferences, which move things around a lot.
fabien
parents:
46
diff
changeset
|
21 |
<input type="hidden" name="view" value="folder"/> |
74
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
22 |
<input type="hidden" name="step" value="delete"/> |
45 | 23 |
<ul> |
24 |
<TMPL_LOOP Subfolders> |
|
74
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
25 |
<li><button name="selection" value="<TMPL_VAR id>">Delete</button> |
57 | 26 |
<a href="?action=index&view=folder&folder=<TMPL_VAR id>"><TMPL_VAR name> |
50 | 27 |
(<TMPL_VAR count>)</a></li> |
45 | 28 |
</TMPL_LOOP> |
29 |
</ul> |
|
47
2781ac85b807
[svn r1604] Implement default_view preferences, which move things around a lot.
fabien
parents:
46
diff
changeset
|
30 |
</form> |
45 | 31 |
</div> |
74
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
32 |
<form action="" method="post" name="add_folder"> |
51
7015d65beb3d
[svn r1608] Correct the keywords bugs and some other in folder view, plus mutual
fabien
parents:
50
diff
changeset
|
33 |
<label>Add subfolder with keyword: |
74
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
34 |
<input type="hidden" name="action" value="folder"/> |
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
35 |
<input type="hidden" name="view" value="folder"/> |
45 | 36 |
<input type="hidden" name="folder" value="<TMPL_VAR folder>"/> |
75
4f6b7b48322f
A lot of fix again, for folder view, bookmark editing and removal
fabien@tzone.org
parents:
74
diff
changeset
|
37 |
<select name="selection" size="1"> |
45 | 38 |
<TMPL_LOOP Keywords> |
75
4f6b7b48322f
A lot of fix again, for folder view, bookmark editing and removal
fabien@tzone.org
parents:
74
diff
changeset
|
39 |
<option value="<TMPL_VAR id>" |
53 | 40 |
><TMPL_VAR keyword> (<TMPL_VAR removed>/<TMPL_VAR count>)</option> |
45 | 41 |
</TMPL_LOOP></select> |
74
6784c4350b41
Cleanup of old code, fixes some errors with folders view and make it a
fabien@tzone.org
parents:
59
diff
changeset
|
42 |
<button name="step" value="add">Add</button> |
45 | 43 |
</form> |
44 |
<hr> |
|
46 | 45 |
<TMPL_INCLUDE NAME="bkmarks.tmpl"> |
45 | 46 |
<hr> |
57 | 47 |
<a href="?action=index&view=dynamic">Switch to dynamic view</a> |
47
2781ac85b807
[svn r1604] Implement default_view preferences, which move things around a lot.
fabien
parents:
46
diff
changeset
|
48 |
<TMPL_INCLUDE NAME="footers.tmpl"> |
45 | 49 |
</body> |
50 |
</html> |
|
51 |
<!-- Keep this comment at the end of the file |
|
52 |
Local variables: |
|
53 |
mode: sgml |
|
54 |
sgml-omittag:t |
|
55 |
sgml-shorttag:t |
|
56 |
sgml-namecase-general:t |
|
57 |
sgml-general-insert-case:lower |
|
58 |
sgml-minimize-attributes:nil |
|
59 |
sgml-always-quote-attributes:t |
|
60 |
sgml-indent-step:2 |
|
61 |
sgml-indent-data:nil |
|
62 |
sgml-parent-document:nil |
|
63 |
sgml-exposed-tags:nil |
|
64 |
sgml-local-catalogs:nil |
|
65 |
sgml-local-ecat-files:nil |
|
66 |
End: |
|
67 |
vi: syntax=html |
|
68 |
--> |