summaryrefslogtreecommitdiff
path: root/app/Template/project_view
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-08 19:12:16 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-08 19:12:16 -0500
commit58d4231f06fbcbc54573504af2c2a4561b9e89ed (patch)
tree828837dd98873c1e83aac9cdd7a9cd367ec899a3 /app/Template/project_view
parent73dce1279760434e1d1b7a903a0a7500462d6f9c (diff)
Improve columns table in project settings
Diffstat (limited to 'app/Template/project_view')
-rw-r--r--app/Template/project_view/show.php94
1 files changed, 45 insertions, 49 deletions
diff --git a/app/Template/project_view/show.php b/app/Template/project_view/show.php
index 29d558b1..7dee08be 100644
--- a/app/Template/project_view/show.php
+++ b/app/Template/project_view/show.php
@@ -31,57 +31,8 @@
<?php if ($project['end_date']): ?>
<li><?= t('End date: ').$this->dt->date($project['end_date']) ?></li>
<?php endif ?>
-
- <?php if ($stats['nb_tasks'] > 0): ?>
-
- <?php if ($stats['nb_active_tasks'] > 0): ?>
- <li><?= $this->url->link(t('%d tasks on the board', $stats['nb_active_tasks']), 'BoardViewController', 'show', array('project_id' => $project['id'], 'search' => 'status:open')) ?></li>
- <?php endif ?>
-
- <?php if ($stats['nb_inactive_tasks'] > 0): ?>
- <li><?= $this->url->link(t('%d closed tasks', $stats['nb_inactive_tasks']), 'TaskListController', 'show', array('project_id' => $project['id'], 'search' => 'status:closed')) ?></li>
- <?php endif ?>
-
- <li><?= t('%d tasks in total', $stats['nb_tasks']) ?></li>
-
- <?php else: ?>
- <li><?= t('No task for this project') ?></li>
- <?php endif ?>
</ul>
-<div class="page-header">
- <h2><?= t('Board') ?></h2>
-</div>
-<table class="table-striped table-scrolling">
- <tr>
- <th class="column-40"><?= t('Column') ?></th>
- <th class="column-20"><?= t('Task limit') ?></th>
- <th class="column-20"><?= t('Active tasks') ?></th>
- <th class="column-20"><?= t('Hide tasks in this column in the dashboard') ?></th>
- </tr>
- <?php foreach ($stats['columns'] as $column): ?>
- <tr>
- <td>
- <?= $this->text->e($column['title']) ?>
- <?php if (! empty($column['description'])): ?>
- <span class="tooltip" title="<?= $this->text->markdownAttribute($column['description']) ?>">
- <i class="fa fa-info-circle"></i>
- </span>
- <?php endif ?>
- </td>
- <td><?= $column['task_limit'] ?: '∞' ?></td>
- <td><?= $column['nb_active_tasks'] ?></td>
- <td>
- <?php if ($column['hide_in_dashboard'] == 1): ?>
- <?= t('Yes') ?>
- <?php else: ?>
- <?= t('No') ?>
- <?php endif ?>
- </td>
- </tr>
- <?php endforeach ?>
-</table>
-
<?php if (! empty($project['description'])): ?>
<div class="page-header">
<h2><?= t('Description') ?></h2>
@@ -91,3 +42,48 @@
<?= $this->text->markdown($project['description']) ?>
</article>
<?php endif ?>
+
+<div class="page-header">
+ <h2><?= t('Columns') ?></h2>
+</div>
+<?php if (empty($columns)): ?>
+ <p class="alert alert-error"><?= t('Your board doesn\'t have any columns!') ?></p>
+<?php else: ?>
+ <table class="table-striped table-scrolling"
+ <thead>
+ <tr>
+ <th class="column-40"><?= t('Column') ?></th>
+ <th class="column-10"><?= t('Task limit') ?></th>
+ <th class="column-20"><?= t('Visible on dashboard') ?></th>
+ <th class="column-15"><?= t('Open tasks') ?></th>
+ <th class="column-15"><?= t('Closed tasks') ?></th>
+ </tr>
+ </thead>
+ <tbody>
+ <?php foreach ($columns as $column): ?>
+ <tr data-column-id="<?= $column['id'] ?>">
+ <td>
+ <?= $this->text->e($column['title']) ?>
+ <?php if (! empty($column['description'])): ?>
+ <span class="tooltip" title="<?= $this->text->markdownAttribute($column['description']) ?>">
+ <i class="fa fa-info-circle"></i>
+ </span>
+ <?php endif ?>
+ </td>
+ <td>
+ <?= $column['task_limit'] ?: '∞' ?>
+ </td>
+ <td>
+ <?= $column['hide_in_dashboard'] == 0 ? t('Yes') : t('No') ?>
+ </td>
+ <td>
+ <?= $column['nb_open_tasks'] ?>
+ </td>
+ <td>
+ <?= $column['nb_closed_tasks'] ?>
+ </td>
+ </tr>
+ <?php endforeach ?>
+ </tbody>
+ </table>
+<?php endif ?>