mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
8 lines
645 B
PHP
8 lines
645 B
PHP
<section id="main">
|
|
<?= $this->projectHeader->render($project, 'ProjectOverviewController', 'show') ?>
|
|
<?= $this->render('project_overview/columns', array('project' => $project)) ?>
|
|
<?= $this->render('project_overview/description', array('project' => $project)) ?>
|
|
<?= $this->render('project_overview/attachments', array('project' => $project, 'images' => $images, 'files' => $files)) ?>
|
|
<?= $this->render('project_overview/information', array('project' => $project, 'users' => $users, 'roles' => $roles)) ?>
|
|
<?= $this->render('project_overview/activity', array('project' => $project, 'events' => $events)) ?>
|
|
</section>
|