2013-02-17 21:48:21 -05:00
|
|
|
<?php if (empty($items)): ?>
|
2013-04-12 21:08:55 -04:00
|
|
|
<p class="alert alert-info"><?= t('No history') ?></p>
|
2013-02-17 21:48:21 -05:00
|
|
|
<?php else: ?>
|
|
|
|
|
|
|
|
<div class="page-header">
|
2013-07-05 22:37:19 -04:00
|
|
|
<h2><?= t('History') ?> (<?= $nb_items ?>)</h2>
|
2013-02-17 21:48:21 -05:00
|
|
|
<ul>
|
2013-07-05 22:37:19 -04:00
|
|
|
<li><a href="?action=confirm-flush-history"><?= t('flush all items') ?></a></li>
|
2013-02-17 21:48:21 -05:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2013-04-02 22:49:14 -04:00
|
|
|
<section class="items" id="listing">
|
2013-10-14 22:38:07 -04:00
|
|
|
<?php foreach ($items as $item): ?>
|
|
|
|
<?= \PicoTools\Template\load('item', array('item' => $item, 'menu' => $menu, 'offset' => $offset, 'hide' => true)) ?>
|
|
|
|
<?php endforeach ?>
|
2013-07-05 22:37:19 -04:00
|
|
|
|
2013-10-14 22:38:07 -04:00
|
|
|
<?= \PicoTools\Template\load('paging', array('menu' => $menu, 'nb_items' => $nb_items, 'items_per_page' => $items_per_page, 'offset' => $offset, 'order' => $order, 'direction' => $direction)) ?>
|
2013-02-17 21:48:21 -05:00
|
|
|
</section>
|
|
|
|
|
2013-06-04 13:38:54 +02:00
|
|
|
<?php endif ?>
|