diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-01 14:19:49 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-01 14:19:49 -0500 |
commit | 40ca850707b2f7f51d2d9028bcfd218cd966b32f (patch) | |
tree | 208af425a604261fce0d6173a57b656ab2c34f3d /app/Template/project | |
parent | b42830e77d85b684fa8c93dd78d19d80c3b3b7fe (diff) |
Add column description (merge/change pull-request #549)
Diffstat (limited to 'app/Template/project')
-rw-r--r-- | app/Template/project/show.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/Template/project/show.php b/app/Template/project/show.php index bc622d0d..486be643 100644 --- a/app/Template/project/show.php +++ b/app/Template/project/show.php @@ -41,13 +41,15 @@ </div> <table class="table-stripped"> <tr> - <th width="50%"><?= t('Column') ?></th> - <th><?= t('Task limit') ?></th> - <th><?= t('Active tasks') ?></th> + <th class="column-30"><?= t('Column') ?></th> + <th><?= t('Description') ?></th> + <th class="column-20"><?= t('Task limit') ?></th> + <th class="column-20"><?= t('Active tasks') ?></th> </tr> <?php foreach ($stats['columns'] as $column): ?> <tr> <td><?= $this->e($column['title']) ?></td> + <td><?= $this->e($column['description']) ?></td> <td><?= $column['task_limit'] ?: '∞' ?></td> <td><?= $column['nb_active_tasks'] ?></td> </tr> |