summaryrefslogtreecommitdiff
path: root/app/Template/board_index.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
commit37332ae2222706f8fb330dae780dc938512edcf5 (patch)
tree9161d539cc289179339162d6922c4d9dd2c30e63 /app/Template/board_index.php
parent8fe5df39d97ef851d11931fcf7e906ec08838ef7 (diff)
Change layout (experimental)
Diffstat (limited to 'app/Template/board_index.php')
-rw-r--r--app/Template/board_index.php24
1 files changed, 7 insertions, 17 deletions
diff --git a/app/Template/board_index.php b/app/Template/board_index.php
index 4fd3d326..d15d455f 100644
--- a/app/Template/board_index.php
+++ b/app/Template/board_index.php
@@ -1,22 +1,12 @@
<section id="main">
-
- <div class="page-header board">
- <h2>
- <?php if (Helper\is_admin()): ?>
- <?= Helper\a('<i class="fa fa-cog"></i>', 'project', 'show', array('project_id' => $current_project_id)) ?>
- <?php endif ?>
- <?= t('Project "%s"', $current_project_name) ?>
- </h2>
- </div>
-
- <div class="project-menu">
+ <div class="page-header">
<ul>
<li>
- <span class="hide-tablet"><?= t('Filter by user') ?></span>
+ <?= t('Filter by user') ?>
<?= Helper\form_select('user_id', $users, $filters) ?>
</li>
<li>
- <span class="hide-tablet"><?= t('Filter by category') ?></span>
+ <?= t('Filter by category') ?>
<?= Helper\form_select('category_id', $categories, $filters) ?>
</li>
<li>
@@ -27,16 +17,16 @@
<?= Helper\a(t('Search'), 'project', 'search', array('project_id' => $current_project_id)) ?>
</li>
<li>
- <i class="fa fa-check-square-o"></i>
+ <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"></i>
+ <i class="fa fa-dashboard fa-fw"></i>
<?= Helper\a(t('Activity'), 'project', 'activity', array('project_id' => $current_project_id)) ?>
</li>
<?php if (Helper\is_admin()): ?>
- <li><i class="fa fa-cog"></i>
- <?= Helper\a(t('Edit board'), 'board', 'edit', array('project_id' => $current_project_id)) ?>
+ <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>