diff options
author | Matthew Cillo <matthewacillo@gmail.com> | 2015-12-07 22:40:55 -0500 |
---|---|---|
committer | Matthew Cillo <matthewacillo@gmail.com> | 2015-12-07 22:45:12 -0500 |
commit | 583e6bf064bbbdd0b031ea429fb1de949ddf64a7 (patch) | |
tree | f88aed231d898172fb2c37b87e9c5310d2de1985 /app/Template/analytic/sidebar.php | |
parent | 78fd4d3ee9940bde6d0bef8c611c6a19595e81fd (diff) |
added working template of compare hours
Diffstat (limited to 'app/Template/analytic/sidebar.php')
-rw-r--r-- | app/Template/analytic/sidebar.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Template/analytic/sidebar.php b/app/Template/analytic/sidebar.php index c942f7ed..746fcebb 100644 --- a/app/Template/analytic/sidebar.php +++ b/app/Template/analytic/sidebar.php @@ -19,7 +19,10 @@ <li <?= $this->app->getRouterAction() === 'leadandcycletime' ? 'class="active"' : '' ?>> <?= $this->url->link(t('Lead and cycle time'), 'analytic', 'leadAndCycleTime', array('project_id' => $project['id'])) ?> </li> + <li <?= $this->app->getRouterAction() === 'comparehours' ? 'class="active"' : '' ?>> + <?= $this->url->link(t('Compare hours'), 'analytic', 'compareHours', array('project_id' => $project['id'])) ?> + </li> </ul> <div class="sidebar-collapse"><a href="#" title="<?= t('Hide sidebar') ?>"><i class="fa fa-chevron-left"></i></a></div> <div class="sidebar-expand" style="display: none"><a href="#" title="<?= t('Expand sidebar') ?>"><i class="fa fa-chevron-right"></i></a></div> -</div>
\ No newline at end of file +</div> |