10 lines
475 B
PHP
10 lines
475 B
PHP
<div class="page-header">
|
|
<h2><?= t('Confirmation') ?></h2>
|
|
</div>
|
|
|
|
<p class="alert alert-info"><?= t('Do you really want to remove these items from your history?') ?></p>
|
|
|
|
<div class="form-actions">
|
|
<a href="?action=flush-history<?= $group_id === null ? '' : '&group_id='.$group_id ?>" class="btn btn-red"><?= t('Remove') ?></a>
|
|
<?= t('or') ?> <a href="?action=history<?= $group_id === null ? '' : '&group_id='.$group_id ?>"><?= t('cancel') ?></a>
|
|
</div>
|