summaryrefslogtreecommitdiff
path: root/app/Template/task_layout.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
commit37332ae2222706f8fb330dae780dc938512edcf5 (patch)
tree9161d539cc289179339162d6922c4d9dd2c30e63 /app/Template/task_layout.php
parent8fe5df39d97ef851d11931fcf7e906ec08838ef7 (diff)
Change layout (experimental)
Diffstat (limited to 'app/Template/task_layout.php')
-rw-r--r--app/Template/task_layout.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/app/Template/task_layout.php b/app/Template/task_layout.php
index ca0a413f..0f8a6f2b 100644
--- a/app/Template/task_layout.php
+++ b/app/Template/task_layout.php
@@ -1,15 +1,14 @@
<section id="main">
<div class="page-header">
- <h2><?= Helper\escape($task['project_name']) ?> &gt; <?= t('Task #%d', $task['id']) ?></h2>
<ul>
- <li><a href="?controller=board&amp;action=show&amp;project_id=<?= $task['project_id'] ?>"><?= t('Back to the board') ?></a></li>
+ <li><i class="fa fa-table fa-fw"></i><?= Helper\a(t('Back to the board'), 'board', 'show', array('project_id' => $task['project_id'])) ?></li>
</ul>
</div>
- <section class="task-show" id="task-section">
+ <section class="sidebar-container" id="task-section">
<?= Helper\template('task_sidebar', array('task' => $task, 'hide_remove_menu' => isset($hide_remove_menu))) ?>
- <div class="task-show-main">
+ <div class="sidebar-content">
<?= $task_content_for_layout ?>
</div>
</section>