1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/project_overview/show.php
2016-03-07 23:38:10 +01:00

16 lines
728 B
PHP

<section id="main">
<?= $this->render('project_header/header', array(
'project' => $project,
'filters' => $filters,
)) ?>
<?= $this->render('project_overview/columns', array('project' => $project)) ?>
<?= $this->render('project_overview/description', array('project' => $project)) ?>
<?= $this->render('project_overview/files', array('project' => $project, 'images' => $images, 'files' => $files)) ?>
<?= $this->render('project_overview/information', array('project' => $project, 'users' => $users, 'roles' => $roles)) ?>
<div class="page-header">
<h2><?= t('Last activity') ?></h2>
</div>
<?= $this->render('event/events', array('events' => $events)) ?>
</section>