paginate accounts managment
This commit is contained in:
parent
e40adcfba1
commit
421f28f32f
5 changed files with 47 additions and 5 deletions
|
@ -13,7 +13,7 @@
|
|||
{% block tabcontent %}
|
||||
|
||||
<ul class="list-group">
|
||||
{% if not groups.exists %}
|
||||
{% if not paginator.count %}
|
||||
<li class="list-group-item" style="line-height: 48px;">
|
||||
<em>There are no groups quit yet.</em>
|
||||
</li>
|
||||
|
@ -34,4 +34,8 @@
|
|||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<div style="text-align: center;">
|
||||
{% bootstrap_pagination groups %}
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
{% block tabcontent %}
|
||||
|
||||
<ul class="list-group">
|
||||
{% if not teams.exists %}
|
||||
{% if not paginator.count %}
|
||||
<li class="list-group-item" style="line-height: 48px;">
|
||||
<em>There are no teams quite yet.</em>
|
||||
</li>
|
||||
|
@ -37,4 +37,8 @@
|
|||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<div style="text-align: center;">
|
||||
{% bootstrap_pagination teams %}
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -37,4 +37,8 @@
|
|||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<div style="text-align: center;">
|
||||
{% bootstrap_pagination users %}
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue