dd47b3f82e
- each feed can have multiple groups assigned - group assignments are done on the add or edit feed page - groups are only visible on the unread page - groups are exported via the fever api - it's not possible do delete a group manually from the database (the group will be removed automatically, as soon as the last association of a group to a feed is removed) - if you try to create an already existing group, the existing group is used to prevent duplicates
9 lines
684 B
PHP
9 lines
684 B
PHP
<div id="items-paging">
|
|
<?php if ($offset > 0): ?>
|
|
<a id="previous-page" href="?action=<?= $menu ?>&offset=<?= ($offset - $items_per_page) ?>&order=<?= $order ?>&direction=<?= $direction ?><?= isset($feed_id) ? '&feed_id='.$feed_id : '' ?>">« <?= t('Previous page') ?></a>
|
|
<?php endif ?>
|
|
|
|
<?php if (($nb_items - $offset) > $items_per_page): ?>
|
|
<a id="next-page" href="?action=<?= $menu ?>&offset=<?= ($offset + $items_per_page) ?>&order=<?= $order ?>&direction=<?= $direction ?><?= isset($feed_id) ? '&feed_id='.$feed_id : '' ?><?= isset($group_id) ? '&group_id='.$group_id : '' ?>"><?= t('Next page') ?> »</a>
|
|
<?php endif ?>
|
|
</div>
|