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/Templates/task_comments.php
2014-10-22 19:59:09 +02:00

15 lines
No EOL
449 B
PHP

<?php if (! empty($comments)): ?>
<div id="comments" class="task-show-section">
<div class="page-header">
<h2><?= t('Comments') ?></h2>
</div>
<?php foreach ($comments as $comment): ?>
<?= Helper\template('comment_show', array(
'comment' => $comment,
'task' => $task,
'not_editable' => isset($not_editable) && $not_editable,
)) ?>
<?php endforeach ?>
</div>
<?php endif ?>