26 lines
652 B
PHTML
26 lines
652 B
PHTML
<div class="controls">
|
|
<?php if (! $this->compact): ?>
|
|
<?= $this->tabs; ?>
|
|
<?php endif ?>
|
|
|
|
<div data-base-target='_next'>
|
|
<?= $this->render('partials/comment/comments-header.phtml'); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content multi-commands">
|
|
<h3><?= $this->icon('reschedule') ?> <?= $this->translate('Commands') ?> </h3>
|
|
<?= $this->qlink(
|
|
sprintf(
|
|
$this->translate('Remove %d comments'),
|
|
count($comments)
|
|
),
|
|
$removeAllLink,
|
|
null,
|
|
array(
|
|
'icon' => 'trash',
|
|
'title' => $this->translate('Remove all selected comments.')
|
|
)
|
|
) ?>
|
|
</div>
|