diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-05 11:23:51 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-05 11:23:51 -0400 |
commit | bac18d80f8ff8fce9d167671273e80a492f4c3c5 (patch) | |
tree | cdb950786eb3d8a92c7307695ce6680041b5a175 /app/Template/board | |
parent | 69c5c83d34229c92a6b9c38c225a81058ab94047 (diff) | |
parent | 42a3a56a91bbc6f1f8c913c8a990d9ea549d481b (diff) |
Merge pull-request #1178
Diffstat (limited to 'app/Template/board')
-rw-r--r-- | app/Template/board/table_swimlane.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Template/board/table_swimlane.php b/app/Template/board/table_swimlane.php index be401633..ab4735b1 100644 --- a/app/Template/board/table_swimlane.php +++ b/app/Template/board/table_swimlane.php @@ -65,6 +65,14 @@ <div title="<?= t('Task count') ?>" class="board-column-header-task-count"> (<span><?= $swimlane['nb_tasks'] ?></span>) + + <?php if (! empty($swimlane['description'])): ?> + <span title="<?= t('Description') ?>" class="tooltip" + data-href="<?= $this->url->href('swimlane', 'description', array('swimlane_id' => $swimlane['id'], 'project_id' => $swimlane['project_id'])) ?>"> + <i class="fa fa-file-text-o"></i> + </span> + <?php endif ?> + </div> </th> <?php endif ?> |