10 lines
270 B
PHP
10 lines
270 B
PHP
<div class="comment-tooltip">
|
|
<?php foreach ($comments as $comment): ?>
|
|
<?= $this->render('comment/show', array(
|
|
'comment' => $comment,
|
|
'task' => $task,
|
|
'hide_actions' => true,
|
|
)) ?>
|
|
<?php endforeach ?>
|
|
</div>
|