summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Template/dashboard/overview.php2
-rw-r--r--app/Template/dashboard/tasks.php2
-rw-r--r--app/Template/search/results.php2
3 files changed, 6 insertions, 0 deletions
diff --git a/app/Template/dashboard/overview.php b/app/Template/dashboard/overview.php
index c0cde10b..f38c0d44 100644
--- a/app/Template/dashboard/overview.php
+++ b/app/Template/dashboard/overview.php
@@ -81,6 +81,8 @@
'task' => $task,
'user_id' => $user['id'],
)) ?>
+
+ <?= $this->hook->render('template:dashboard:task:footer', array('task' => $task)) ?>
</div>
<?php endforeach ?>
</div>
diff --git a/app/Template/dashboard/tasks.php b/app/Template/dashboard/tasks.php
index 23aef990..bde1e2f3 100644
--- a/app/Template/dashboard/tasks.php
+++ b/app/Template/dashboard/tasks.php
@@ -30,6 +30,8 @@
<?= $this->render('task_list/task_subtasks', array(
'task' => $task,
)) ?>
+
+ <?= $this->hook->render('template:dashboard:task:footer', array('task' => $task)) ?>
</div>
<?php endforeach ?>
</div>
diff --git a/app/Template/search/results.php b/app/Template/search/results.php
index f5a4cfc8..85b09ea9 100644
--- a/app/Template/search/results.php
+++ b/app/Template/search/results.php
@@ -24,6 +24,8 @@
<?= $this->render('task_list/task_subtasks', array(
'task' => $task,
)) ?>
+
+ <?= $this->hook->render('template:search:task:footer', array('task' => $task)) ?>
</div>
<?php endforeach ?>
</div>