This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav aria-label="Page navigation example" style="font-size: 17px;"> | |
<!-- | |
Make Previous button enabled if the record.currentPage is greater than 1 else disable the button | |
--> | |
{% if record.hasPages %} | |
<ul class="pagination justify-content-center"> | |
{% if record.currentPage > 1 %} | |
<li class="page-item"> | |
<a class="page-link" href="{{ record.previousPageUrl }}" rel="prev" >Previous</a> | |
</li> |