diff options
Diffstat (limited to 'app/Template/project_overview/activity.php')
-rw-r--r-- | app/Template/project_overview/activity.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Template/project_overview/activity.php b/app/Template/project_overview/activity.php new file mode 100644 index 00000000..2eb7a193 --- /dev/null +++ b/app/Template/project_overview/activity.php @@ -0,0 +1,8 @@ +<section class="accordion-section <?= empty($events) ? 'accordion-collapsed' : '' ?>"> + <div class="accordion-title"> + <h3><a href="#" class="fa accordion-toggle"></a> <?= t('Last activity') ?></h3> + </div> + <div class="accordion-content"> + <?= $this->render('event/events', array('events' => $events)) ?> + </div> +</section>
\ No newline at end of file |