diff options
Diffstat (limited to 'app/Template/analytic/layout.php')
-rw-r--r-- | app/Template/analytic/layout.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app/Template/analytic/layout.php b/app/Template/analytic/layout.php new file mode 100644 index 00000000..de8d0de9 --- /dev/null +++ b/app/Template/analytic/layout.php @@ -0,0 +1,35 @@ +<?= $this->asset->js('assets/js/vendor/d3.v3.4.8.min.js') ?> +<?= $this->asset->js('assets/js/vendor/dimple.v2.1.2.min.js') ?> + +<section id="main"> + <div class="page-header"> + <ul> + <li> + <span class="dropdown"> + <span> + <i class="fa fa-caret-down"></i> <a href="#" class="dropdown-menu"><?= t('Actions') ?></a> + <ul> + <?= $this->render('project/dropdown', array('project' => $project)) ?> + </ul> + </span> + </span> + </li> + <li> + <i class="fa fa-table fa-fw"></i> + <?= $this->url->link(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?> + </li> + <li> + <i class="fa fa-folder fa-fw"></i> + <?= $this->url->link(t('All projects'), 'project', 'index') ?> + </li> + </ul> + </div> + <section class="sidebar-container" id="analytic-section"> + + <?= $this->render('analytic/sidebar', array('project' => $project)) ?> + + <div class="sidebar-content"> + <?= $content_for_sublayout ?> + </div> + </section> +</section>
\ No newline at end of file |