mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-26 11:10:24 -05:00
19 lines
625 B
PHTML
19 lines
625 B
PHTML
<div>
|
|
Comments
|
|
<?php if (!empty($object->comments)): ?>
|
|
<blockquote>
|
|
<?php foreach ($object->comments as $comment): ?>
|
|
<p>
|
|
<?= sprintf(
|
|
'[%s] %s (%s): %s',
|
|
$this->escape($comment->comment_author),
|
|
$this->format()->timeSince($comment->comment_timestamp),
|
|
$comment->comment_type,
|
|
$comment->comment_data
|
|
); ?>
|
|
<a href="#" class="button">{{REMOVE_ICON}}</a>
|
|
</p>
|
|
<?php endforeach; ?>
|
|
</blockquote>
|
|
<?php endif; ?>
|
|
</div>
|