summaryrefslogtreecommitdiff
path: root/app/Template/task/sidebar.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-03-30 22:04:27 -0400
committerFrederic Guillot <fred@kanboard.net>2015-03-30 22:04:27 -0400
commit066893e6a1524adfd3671b03f57cec0d77168cc0 (patch)
tree01837a9d8ec83b3d952d160bd81981bdb9534e47 /app/Template/task/sidebar.php
parent8d9b87bb6ee084d2ee71e8ca17cf2537dba87d7f (diff)
Split task sidebar with another section
Diffstat (limited to 'app/Template/task/sidebar.php')
-rw-r--r--app/Template/task/sidebar.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Template/task/sidebar.php b/app/Template/task/sidebar.php
index e911d5cd..2ab034e0 100644
--- a/app/Template/task/sidebar.php
+++ b/app/Template/task/sidebar.php
@@ -1,5 +1,5 @@
<div class="sidebar">
- <h2><?= t('Actions') ?></h2>
+ <h2><?= t('Information') ?></h2>
<ul>
<li>
<?= $this->a(t('Summary'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
@@ -15,6 +15,9 @@
<?= $this->a(t('Time tracking'), 'task', 'timesheet', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
</li>
<?php endif ?>
+ </ul>
+ <h2><?= t('Actions') ?></h2>
+ <ul>
<li>
<?= $this->a(t('Edit the task'), 'task', 'edit', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
</li>