mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
9 lines
478 B
PHP
9 lines
478 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">
|
|
<?= $this->render('task_file/images', array('task' => $task, 'images' => $images)) ?>
|
|
<?= $this->render('task_file/files', array('task' => $task, 'files' => $files)) ?>
|
|
</div>
|
|
</section>
|