summaryrefslogtreecommitdiff
path: root/app/Templates/board_index.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-10-24 22:51:30 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-10-24 22:51:30 -0400
commit90e06162999c8ec7fa9bcfa391800f7907419d9b (patch)
treef0f8d4a760f25c4f7773e0a1851031db6b08b9f2 /app/Templates/board_index.php
parent180efb962c6fc4da47ed39e60db137d63ffaad5b (diff)
Rename Locales and Templates folders to be more consistent
Diffstat (limited to 'app/Templates/board_index.php')
-rw-r--r--app/Templates/board_index.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/app/Templates/board_index.php b/app/Templates/board_index.php
deleted file mode 100644
index bff7dcc9..00000000
--- a/app/Templates/board_index.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<section id="main">
-
- <div class="page-header board">
- <h2>
- <?= t('Project "%s"', $current_project_name) ?>
- </h2>
- </div>
-
- <div class="project-menu">
- <ul>
- <li>
- <span class="hide-tablet"><?= t('Filter by user') ?></span>
- <?= Helper\form_select('user_id', $users, $filters) ?>
- </li>
- <li>
- <span class="hide-tablet"><?= t('Filter by category') ?></span>
- <?= Helper\form_select('category_id', $categories, $filters) ?>
- </li>
- <li><a href="#" id="filter-due-date"><?= t('Filter by due date') ?></a></li>
- <li><a href="?controller=project&amp;action=search&amp;project_id=<?= $current_project_id ?>"><?= t('Search') ?></a></li>
- <li><a href="?controller=project&amp;action=tasks&amp;project_id=<?= $current_project_id ?>"><?= t('Completed tasks') ?></a></li>
- <li><a href="?controller=project&amp;action=activity&amp;project_id=<?= $current_project_id ?>"><?= t('Activity') ?></a></li>
- </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>