From 3b3e8033696e408e699b911c042361d62ce7b7ac Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 19 Feb 2017 17:08:00 -0500 Subject: Redesign task list view --- app/Template/task_list/listing.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 app/Template/task_list/listing.php (limited to 'app/Template/task_list/listing.php') 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 @@ +
+ projectHeader->render($project, 'TaskListController', 'show') ?> + + isEmpty()): ?> +

+ isEmpty()): ?> +
+
+ render('task_list/sort_menu', array('paginator' => $paginator)) ?> +
+ getCollection() as $task): ?> +
+ render('task_list/task_title', array( + 'task' => $task, + )) ?> + + render('task_list/task_details', array( + 'task' => $task, + )) ?> + + render('task_list/task_avatars', array( + 'task' => $task, + )) ?> + + render('task_list/task_icons', array( + 'project' => $project, + 'task' => $task, + )) ?> +
+ +
+ + + +
-- cgit v1.2.3