Remove button next and previous when there are no more pages. #1052

This commit is contained in:
Diego Najar 2019-06-17 22:05:17 +02:00
parent 016754b67c
commit b69f795038
1 changed files with 6 additions and 2 deletions

View File

@ -48,9 +48,11 @@
<ul class="pagination flex-wrap">
<!-- Previous button -->
<li class="page-item mr-2 <?php if (!Paginator::showPrev()) echo 'disabled' ?>">
<?php if (Paginator::showPrev()): ?>
<li class="page-item mr-2">
<a class="page-link" href="<?php echo Paginator::previousPageUrl() ?>" tabindex="-1">&#9664; <?php echo $L->get('Previous'); ?></a>
</li>
<?php endif; ?>
<!-- Home button -->
<li class="page-item <?php if (Paginator::currentPage()==1) echo 'disabled' ?>">
@ -58,9 +60,11 @@
</li>
<!-- Next button -->
<li class="page-item ml-2 <?php if (!Paginator::showNext()) echo 'disabled' ?>">
<?php if (Paginator::showNext()): ?>
<li class="page-item ml-2">
<a class="page-link" href="<?php echo Paginator::nextPageUrl() ?>"><?php echo $L->get('Next'); ?> &#9658;</a>
</li>
<?php endif; ?>
</ul>
</nav>