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