1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

Fixes #4146 - Better way to do bootstrap 4 pagination.

This commit is contained in:
Cameron 2020-05-11 12:01:50 -07:00
parent c07b20f268
commit 2cf97da75c

View File

@ -128,16 +128,18 @@ if (!defined('e107_INIT')) { exit; }
<div class="panel-body card-body text-center">
{USER_UPDATE_LINK}
</div>
<div class="panel-body card-body user-view-nextprev">
<div class="float-left previous">
{USER_JUMP_LINK=prev}
</div>
<div class="text-center ">
<!-- Back to List? -->
</div>
<div class="float-right next">
{USER_JUMP_LINK=next}
</div>
<div class="panel-body card-body">
<ul class="pagination d-flex justify-content-between user-view-nextprev">
<li class="page-item previous">
{USER_JUMP_LINK=prev}
</li>
<li>
<!-- Back to List? -->
</li>
<li class="page-item next">
{USER_JUMP_LINK=next}
</li>
</ul>
</div>
</div>