summaryrefslogtreecommitdiff
path: root/themes/CleanFS/templates/pm.status.tpl
blob: 9c2263ebe96103e2eb3cc76cde28e219c474a97d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div id="toolbox">
  <h3><?php echo Filters::noXSS($proj->prefs['project_title']); ?> : <?php echo Filters::noXSS(L('taskstatuses')); ?></h3>
<?php
$this->assign('list_type', 'status');
$this->assign('rows', $proj->listTaskStatuses(true));

$systemwide = new Project(0);
$this->assign('sysrows', $systemwide->listTaskStatuses(true));

$this->display('common.list.tpl');
?>
</div>