diff options
Diffstat (limited to 'app/Template/task_list/listing.php')
-rw-r--r-- | app/Template/task_list/listing.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app/Template/task_list/listing.php b/app/Template/task_list/listing.php new file mode 100644 index 00000000..76803a5c --- /dev/null +++ b/app/Template/task_list/listing.php @@ -0,0 +1,35 @@ +<section id="main"> + <?= $this->projectHeader->render($project, 'TaskListController', 'show') ?> + + <?php if ($paginator->isEmpty()): ?> + <p class="alert"><?= t('No tasks found.') ?></p> + <?php elseif (! $paginator->isEmpty()): ?> + <div class="task-list"> + <div class="task-list-header"> + <?= $this->render('task_list/sort_menu', array('paginator' => $paginator)) ?> + </div> + <?php foreach ($paginator->getCollection() as $task): ?> + <div class="task-list-row color-<?= $task['color_id'] ?>"> + <?= $this->render('task_list/task_title', array( + 'task' => $task, + )) ?> + + <?= $this->render('task_list/task_details', array( + 'task' => $task, + )) ?> + + <?= $this->render('task_list/task_avatars', array( + 'task' => $task, + )) ?> + + <?= $this->render('task_list/task_icons', array( + 'project' => $project, + 'task' => $task, + )) ?> + </div> + <?php endforeach ?> + </div> + + <?= $paginator ?> + <?php endif ?> +</section> |