paginate accounts managment

This commit is contained in:
Élie Bouttier 2014-12-19 20:09:56 +01:00
parent e40adcfba1
commit 421f28f32f
5 changed files with 47 additions and 5 deletions

View file

@ -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 %}

View file

@ -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 %}

View file

@ -37,4 +37,8 @@
{% endfor %}
</ul>
<div style="text-align: center;">
{% bootstrap_pagination users %}
</div>
{% endblock %}