summaryrefslogtreecommitdiff
path: root/themes/CleanFS/templates/pm.tag.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/CleanFS/templates/pm.tag.tpl')
-rw-r--r--themes/CleanFS/templates/pm.tag.tpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/CleanFS/templates/pm.tag.tpl b/themes/CleanFS/templates/pm.tag.tpl
new file mode 100644
index 0000000..7ec3f2d
--- /dev/null
+++ b/themes/CleanFS/templates/pm.tag.tpl
@@ -0,0 +1,14 @@
+<div id="toolbox">
+ <h3><?php echo Filters::noXSS(L('tags')); ?></h3>
+ <p>Tag management is in development.</p>
+ <p>Please see <a href="https://bugs.flyspray.org/2012" target="_blank">bugs.flyspray.org/2012</a> for status of <b>Tags</b> feature.</p>
+<?php
+$this->assign('list_type', 'tag');
+$this->assign('rows', $proj->listTags(true));
+
+$systemwide = new Project(0);
+$this->assign('sysrows', $systemwide->listTags(true));
+
+$this->display('common.list.tpl');
+?>
+</div>