2013-02-18 03:48:21 +01:00
|
|
|
<?php if (empty($items)): ?>
|
2016-10-02 04:24:33 +02:00
|
|
|
<p class="alert alert-info"><?php echo t('No history') ?></p>
|
2013-02-18 03:48:21 +01:00
|
|
|
<?php else: ?>
|
2017-01-21 20:40:24 +01:00
|
|
|
<?php echo Miniflux\Template\load('common/search') ?>
|
|
|
|
|
2013-02-18 03:48:21 +01:00
|
|
|
<div class="page-header">
|
2016-10-02 04:24:33 +02:00
|
|
|
<h2><?php echo t('History') ?><span id="page-counter"><?php echo isset($nb_items) ? $nb_items : '' ?></span></h2>
|
2016-02-28 14:58:07 +01:00
|
|
|
<?php if (!empty($groups)): ?>
|
|
|
|
<nav>
|
|
|
|
<ul id="grouplist">
|
|
|
|
<?php foreach ($groups as $group): ?>
|
2016-10-02 04:24:33 +02:00
|
|
|
<li <?php echo $group['id'] == $group_id ? 'class="active"' : '' ?>>
|
|
|
|
<a href="?action=history&group_id=<?php echo$group['id']?>"><?php echo$group['title']?></a>
|
2016-02-28 14:58:07 +01:00
|
|
|
</li>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<?php endif ?>
|
|
|
|
|
2013-02-18 03:48:21 +01:00
|
|
|
<ul>
|
2016-04-17 23:35:50 +02:00
|
|
|
<li>
|
2016-10-02 04:24:33 +02:00
|
|
|
<a href="?action=history<?php echo $group_id === null ? '' : '&group_id='.$group_id ?>&order=updated&direction=<?php echo $direction == 'asc' ? 'desc' : 'asc' ?>"><?php echo tne('sort by date %s(%s)%s', '<span class="hide-mobile">', $direction == 'desc' ? t('older first') : t('most recent first'), '</span>') ?></a>
|
2016-04-17 23:35:50 +02:00
|
|
|
</li>
|
2016-10-02 04:24:33 +02:00
|
|
|
<li><a href="?action=confirm-flush-history<?php echo $group_id === null ? '' : '&group_id='.$group_id ?>"><?php echo t('flush all items') ?></a></li>
|
2013-02-18 03:48:21 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2013-12-23 19:33:16 +01:00
|
|
|
<?php if ($nothing_to_read): ?>
|
2016-10-02 04:24:33 +02:00
|
|
|
<p class="alert alert-info"><?php echo t('There is nothing new to read, enjoy your previous readings!') ?></p>
|
2013-12-23 19:33:16 +01:00
|
|
|
<?php endif ?>
|
|
|
|
|
2013-04-03 04:49:14 +02:00
|
|
|
<section class="items" id="listing">
|
2013-10-15 04:38:07 +02:00
|
|
|
<?php foreach ($items as $item): ?>
|
2017-01-21 20:40:24 +01:00
|
|
|
<?php echo Miniflux\Template\load('items/item', array(
|
2014-12-24 23:54:27 +01:00
|
|
|
'item' => $item,
|
|
|
|
'menu' => $menu,
|
|
|
|
'offset' => $offset,
|
|
|
|
'hide' => true,
|
|
|
|
'display_mode' => $display_mode,
|
2016-02-27 20:21:18 +01:00
|
|
|
'item_title_link' => $item_title_link,
|
2014-12-24 23:54:27 +01:00
|
|
|
'favicons' => $favicons,
|
2015-01-29 23:28:18 +01:00
|
|
|
'original_marks_read' => $original_marks_read,
|
2014-12-24 23:54:27 +01:00
|
|
|
)) ?>
|
2013-10-15 04:38:07 +02:00
|
|
|
<?php endforeach ?>
|
2013-07-06 04:37:19 +02:00
|
|
|
|
2017-01-21 20:40:24 +01:00
|
|
|
<?php echo Miniflux\Template\load('items/paging', array('menu' => $menu, 'nb_items' => $nb_items, 'items_per_page' => $items_per_page, 'offset' => $offset, 'order' => $order, 'direction' => $direction, 'group_id' => $group_id)) ?>
|
2013-02-18 03:48:21 +01:00
|
|
|
</section>
|
|
|
|
|
2013-06-04 13:38:54 +02:00
|
|
|
<?php endif ?>
|