diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-12 14:28:08 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-12 14:28:08 -0400 |
commit | b7060b33ef317eeac576c504b1fb840d4471e411 (patch) | |
tree | 8acf657eda4df76285905fc5e774aacecb02f488 /app/Templates/project_tasks.php | |
parent | deeebd8e72a13fcbe6d357aefed9130671ee5161 (diff) |
Add pagination/column sorting for search and completed tasks
Diffstat (limited to 'app/Templates/project_tasks.php')
-rw-r--r-- | app/Templates/project_tasks.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Templates/project_tasks.php b/app/Templates/project_tasks.php index bc27befa..7b6f2d9c 100644 --- a/app/Templates/project_tasks.php +++ b/app/Templates/project_tasks.php @@ -12,7 +12,12 @@ <?php if (empty($tasks)): ?> <p class="alert"><?= t('No task') ?></p> <?php else: ?> - <?= Helper\template('task_table', array('tasks' => $tasks, 'categories' => $categories, 'columns' => $columns)) ?> + <?= Helper\template('task_table', array( + 'tasks' => $tasks, + 'categories' => $categories, + 'columns' => $columns, + 'pagination' => $pagination, + )) ?> <?php endif ?> </section> </section>
\ No newline at end of file |