summaryrefslogtreecommitdiff
path: root/app/Template/board
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-08-21 21:49:53 -0400
committerFrederic Guillot <fred@kanboard.net>2015-08-21 21:49:53 -0400
commit7b664afd61703ad29af0938131209debd25bdf40 (patch)
tree2a571f3f91cd17ead788096b93a37dbf37fbefac /app/Template/board
parent0057400d73eb698d9de396ae509bae7bf31acff2 (diff)
Add users and categories filters on the board
Diffstat (limited to 'app/Template/board')
-rw-r--r--app/Template/board/private_view.php2
-rw-r--r--app/Template/board/table_container.php1
2 files changed, 3 insertions, 0 deletions
diff --git a/app/Template/board/private_view.php b/app/Template/board/private_view.php
index 5fdaa7fc..d4c2c651 100644
--- a/app/Template/board/private_view.php
+++ b/app/Template/board/private_view.php
@@ -3,6 +3,8 @@
<?= $this->render('project/filters', array(
'project' => $project,
'filters' => $filters,
+ 'categories_list' => $categories_list,
+ 'users_list' => $users_list,
'is_board' => true,
)) ?>
diff --git a/app/Template/board/table_container.php b/app/Template/board/table_container.php
index 65ccdc4f..98b40eb4 100644
--- a/app/Template/board/table_container.php
+++ b/app/Template/board/table_container.php
@@ -7,6 +7,7 @@
data-project-id="<?= $project['id'] ?>"
data-check-interval="<?= $board_private_refresh_interval ?>"
data-save-url="<?= $this->url->href('board', 'save', array('project_id' => $project['id'])) ?>"
+ data-reload-url="<?= $this->url->href('board', 'reload', array('project_id' => $project['id'])) ?>"
data-check-url="<?= $this->url->href('board', 'check', array('project_id' => $project['id'], 'timestamp' => time())) ?>"
data-task-creation-url="<?= $this->url->href('taskcreation', 'create', array('project_id' => $project['id'])) ?>"
>