2015-05-04 14:59:39 +02:00
|
|
|
<div class="controls">
|
2015-05-04 15:51:17 +02:00
|
|
|
<?php if (! $this->compact): ?>
|
|
|
|
<?= $this->tabs; ?>
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
<div data-base-target='_next'>
|
|
|
|
<?= $this->render('partials/comment/comments-header.phtml'); ?>
|
|
|
|
</div>
|
2015-05-04 14:59:39 +02:00
|
|
|
</div>
|
|
|
|
|
2015-05-18 17:13:46 +02:00
|
|
|
<div class="content multi-commands">
|
2015-05-04 14:59:39 +02:00
|
|
|
<h3><?= $this->icon('reschedule') ?> <?= $this->translate('Commands') ?> </h3>
|
|
|
|
<?= $this->qlink(
|
|
|
|
sprintf(
|
2015-05-18 14:49:06 +02:00
|
|
|
$this->translate('Remove %d comments'),
|
2015-05-04 14:59:39 +02:00
|
|
|
count($comments)
|
|
|
|
),
|
|
|
|
$removeAllLink,
|
|
|
|
null,
|
|
|
|
array(
|
|
|
|
'icon' => 'trash',
|
|
|
|
'title' => $this->translate('Remove all selected comments.')
|
|
|
|
)
|
|
|
|
) ?>
|
|
|
|
</div>
|