blob: a10718480208e4af74686a6d5ec22e1069f5295c (
plain)
1
2
3
4
5
6
7
8
9
|
<div class="tooltip-large">
<?php foreach ($comments as $comment): ?>
<?= $this->render('comment/show', array(
'comment' => $comment,
'task' => $task,
'hide_actions' => true,
)) ?>
<?php endforeach ?>
</div>
|