diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-11 18:21:54 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-11 18:21:54 -0400 |
commit | ffe615d2018bdfb789667715bbde062dd696d320 (patch) | |
tree | 7835b6b1bb2b78cbdd601dcdea6641d34acdb561 /app/Template/task/comments.php | |
parent | c77c9443e9426967a57fb964a8f61a92b1a69eba (diff) |
Add comments sorting
Diffstat (limited to 'app/Template/task/comments.php')
-rw-r--r-- | app/Template/task/comments.php | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/app/Template/task/comments.php b/app/Template/task/comments.php index a09862f9..070de320 100644 --- a/app/Template/task/comments.php +++ b/app/Template/task/comments.php @@ -1,7 +1,13 @@ <?php if (! empty($comments)): ?> <div id="comments" class="task-show-section"> <div class="page-header"> - <h2><?= t('Comments') ?></h2> + <h2> + <?= t('Comments') ?> + <span class="comment-sorting"> + <i class="fa fa-sort"></i> + <?= $this->url->link(t('change sorting'), 'comment', 'toggleSorting', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> + </span> + </h2> </div> <?php foreach ($comments as $comment): ?> @@ -16,13 +22,13 @@ <?php if (! isset($not_editable)): ?> <?= $this->render('comment/create', array( - 'skip_cancel' => true, - 'values' => array( - 'user_id' => $this->user->getId(), - 'task_id' => $task['id'], - ), - 'errors' => array(), - 'task' => $task + 'skip_cancel' => true, + 'values' => array( + 'user_id' => $this->user->getId(), + 'task_id' => $task['id'], + ), + 'errors' => array(), + 'task' => $task )) ?> <?php endif ?> </div> |