1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 12:48:26 +02: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"> <div class="panel-body card-body text-center">
{USER_UPDATE_LINK} {USER_UPDATE_LINK}
</div> </div>
<div class="panel-body card-body user-view-nextprev"> <div class="panel-body card-body">
<div class="float-left previous"> <ul class="pagination d-flex justify-content-between user-view-nextprev">
{USER_JUMP_LINK=prev} <li class="page-item previous">
</div> {USER_JUMP_LINK=prev}
<div class="text-center "> </li>
<!-- Back to List? --> <li>
</div> <!-- Back to List? -->
<div class="float-right next"> </li>
{USER_JUMP_LINK=next} <li class="page-item next">
</div> {USER_JUMP_LINK=next}
</li>
</ul>
</div> </div>
</div> </div>