summaryrefslogtreecommitdiff
path: root/app/Template/board_index.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/board_index.php')
-rw-r--r--app/Template/board_index.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/app/Template/board_index.php b/app/Template/board_index.php
deleted file mode 100644
index e478680f..00000000
--- a/app/Template/board_index.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<section id="main">
- <div class="page-header">
- <ul>
- <li>
- <?= t('Filter by user') ?>
- <?= Helper\form_select('user_id', $users, $filters) ?>
- </li>
- <li>
- <?= t('Filter by category') ?>
- <?= Helper\form_select('category_id', $categories, $filters) ?>
- </li>
- <li>
- <a href="#" id="filter-due-date"><?= t('Filter by due date') ?></a>
- </li>
- <li>
- <i class="fa fa-search"></i>
- <?= Helper\a(t('Search'), 'project', 'search', array('project_id' => $current_project_id)) ?>
- </li>
- <li>
- <i class="fa fa-check-square-o fa-fw"></i>
- <?= Helper\a(t('Completed tasks'), 'project', 'tasks', array('project_id' => $current_project_id)) ?>
- </li>
- <li>
- <i class="fa fa-dashboard fa-fw"></i>
- <?= Helper\a(t('Activity'), 'project', 'activity', array('project_id' => $current_project_id)) ?>
- </li>
- <li>
- <i class="fa fa-line-chart fa-fw"></i>
- <?= Helper\a(t('Analytics'), 'analytic', 'repartition', array('project_id' => $current_project_id)) ?>
- </li>
- <?php if (Helper\is_admin()): ?>
- <li><i class="fa fa-cog fa-fw"></i>
- <?= Helper\a(t('Configure'), 'project', 'show', array('project_id' => $current_project_id)) ?>
- <?php endif ?>
- </ul>
- </div>
-
- <?php if (empty($board)): ?>
- <p class="alert alert-error"><?= t('There is no column in your project!') ?></p>
- <?php else: ?>
- <?= Helper\template('board_show', array(
- 'current_project_id' => $current_project_id,
- 'board' => $board,
- 'categories' => $categories,
- 'board_private_refresh_interval' => $board_private_refresh_interval,
- 'board_highlight_period' => $board_highlight_period,
- )) ?>
- <?php endif ?>
-
-</section>