mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
15 lines
818 B
PHP
15 lines
818 B
PHP
<section class="accordion-section <?= empty($files) && empty($images) ? 'accordion-collapsed' : '' ?>">
|
|
<div class="accordion-title">
|
|
<h3><a href="#" class="fa accordion-toggle"></a> <?= t('Attachments') ?></h3>
|
|
</div>
|
|
<div class="accordion-content">
|
|
<?php if ($this->user->hasProjectAccess('ProjectFile', 'create', $project['id'])): ?>
|
|
<div class="buttons-header">
|
|
<?= $this->url->button('fa-plus', t('Upload a file'), 'ProjectFile', 'create', array('project_id' => $project['id']), 'popover') ?>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<?= $this->render('project_overview/images', array('project' => $project, 'images' => $images)) ?>
|
|
<?= $this->render('project_overview/files', array('project' => $project, 'files' => $files)) ?>
|
|
</div>
|
|
</section>
|