summaryrefslogtreecommitdiff
path: root/app/Template/comment_list
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-18 18:25:46 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-18 18:25:46 -0500
commitb4dc602381a367ce9ed1a1bbe28b7903976fdabe (patch)
tree7edc2532f56abd66ff7f20b8a75dd0268d69310c /app/Template/comment_list
parent5710bab97198234afced474250f20e24332fd6fc (diff)
Send comments by email
Diffstat (limited to 'app/Template/comment_list')
-rw-r--r--app/Template/comment_list/show.php25
1 files changed, 15 insertions, 10 deletions
diff --git a/app/Template/comment_list/show.php b/app/Template/comment_list/show.php
index 6e362560..4b6b765d 100644
--- a/app/Template/comment_list/show.php
+++ b/app/Template/comment_list/show.php
@@ -1,20 +1,25 @@
<div class="page-header">
- <h2><?= $this->text->e($task['title']) ?> &gt; <?= t('Comments') ?></h2>
+ <h2><?= $this->text->e($task['title']) ?></h2>
<?php if (!isset($is_public) || !$is_public): ?>
- <div class="comment-sorting">
- <small>
- <?= $this->url->icon('sort', t('change sorting'), 'CommentListController', 'toggleSorting', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'js-modal-replace') ?>
- </small>
- </div>
+ <ul>
+ <li>
+ <?= $this->url->icon('sort', t('Change sorting'), 'CommentListController', 'toggleSorting', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'js-modal-replace') ?>
+ </li>
+ <?php if ($editable): ?>
+ <li>
+ <?= $this->modal->medium('paper-plane', t('Send by email'), 'CommentMailController', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
+ </li>
+ <?php endif ?>
+ </ul>
<?php endif ?>
</div>
<div class="comments">
<?php foreach ($comments as $comment): ?>
<?= $this->render('comment/show', array(
- 'comment' => $comment,
- 'task' => $task,
- 'project' => $project,
- 'editable' => $editable,
+ 'comment' => $comment,
+ 'task' => $task,
+ 'project' => $project,
+ 'editable' => $editable,
'is_public' => isset($is_public) && $is_public,
)) ?>
<?php endforeach ?>