diff --git a/app/Template/board_index.php b/app/Template/board_index.php
index bff7dcc98..4fd3d3267 100644
--- a/app/Template/board_index.php
+++ b/app/Template/board_index.php
@@ -2,6 +2,9 @@
@@ -16,10 +19,25 @@
= t('Filter by category') ?>
= Helper\form_select('category_id', $categories, $filters) ?>
- = t('Filter by due date') ?>
- = t('Search') ?>
- = t('Completed tasks') ?>
- = t('Activity') ?>
+
+ = t('Filter by due date') ?>
+
+
+
+ = Helper\a(t('Search'), 'project', 'search', array('project_id' => $current_project_id)) ?>
+
+
+
+ = Helper\a(t('Completed tasks'), 'project', 'tasks', array('project_id' => $current_project_id)) ?>
+
+
+
+ = Helper\a(t('Activity'), 'project', 'activity', array('project_id' => $current_project_id)) ?>
+
+
+
+ = Helper\a(t('Edit board'), 'board', 'edit', array('project_id' => $current_project_id)) ?>
+
diff --git a/assets/css/app.css b/assets/css/app.css
index 630d94c55..c767cab15 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -522,6 +522,15 @@ nav .active a {
border-bottom: 1px dotted red;
}
+.page-header h2 a {
+ color: #ddd;
+}
+
+.page-header h2 a:focus,
+.page-header h2 a:hover {
+ color: #333;
+}
+
.page-header ul {
text-align: left;
margin-top: 5px;