summaryrefslogtreecommitdiff
path: root/app/Template/task/layout.php
blob: 776fdc78c3a135bcd2e0ce98b5f4a29f13df919e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<section id="main">
    <div class="page-header">
        <ul>
            <li><i class="fa fa-table fa-fw"></i><?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $task['project_id'])) ?></li>
        </ul>
    </div>
    <section class="sidebar-container" id="task-section">

        <?= $this->render('task/sidebar', array('task' => $task, 'hide_remove_menu' => isset($hide_remove_menu))) ?>

        <div class="sidebar-content">
            <?= $task_content_for_layout ?>
        </div>
    </section>
</section>