8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-19 17:12:32 +00:00

Fix #28 : ajouter paginator en bas de page

This commit is contained in:
FERNET Laouen 2017-11-14 22:23:39 +01:00 committed by root
parent 2ff7e916a5
commit 2b5a9f7cc1
13 changed files with 45 additions and 1 deletions

View file

@ -80,3 +80,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
</table>
{% if facture_list.paginator %}
{% include "pagination.html" with list=facture_list %}
{% endif %}

View file

@ -78,3 +78,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</form>
{% endblock %}
{% if facture_list.paginator %}
{% include "pagination.html" with list=facture_list %}
{% endif %}

View file

@ -59,3 +59,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
{% endfor %}
</table>
{% if revisions_list.paginator %}
{% include "pagination.html" with list=revisions_list %}
{% endif %}

View file

@ -144,4 +144,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
</table>
{% if versions_list.paginator %}
{% include "pagination.html" with list=versions_list %}
{% endif %}

View file

@ -126,3 +126,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</tbody>
</table>
{% if machines_list.paginator %}
{% include "pagination.html" with list=machines_list %}
{% endif %}

View file

@ -54,3 +54,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</tr>
{% endfor %}
</table>
{% if room_list.paginator %}
{% include "pagination.html" with list=room_list %}
{% endif %}

View file

@ -52,3 +52,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</tr>
{% endfor %}
</table>
{% if constructor_switch_list.paginator %}
{% include "pagination.html" with list=constructor_switch_list %}
{% endif %}

View file

@ -54,3 +54,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</tr>
{% endfor %}
</table>
{% if model_switch_list.paginator %}
{% include "pagination.html" with list=model_switch_list %}
{% endif %}

View file

@ -65,3 +65,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</tr>
{% endfor %}
</table>
{% if switch_list.paginator %}
{% include "pagination.html" with list=switch_list %}
{% endif %}

View file

@ -56,3 +56,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
</table>
{% if ban_list.paginator %}
{% include "pagination.html" with list=ban_list %}
{% endif %}

View file

@ -55,3 +55,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
</table>
{% if clubs_list.paginator %}
{% include "pagination.html" with list=clubs_list %}
{% endif %}

View file

@ -57,3 +57,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
</table>
{% if users_list.paginator %}
{% include "pagination.html" with list=users_list %}
{% endif %}

View file

@ -56,3 +56,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endfor %}
</table>
{% if white_list.paginator %}
{% include "pagination.html" with list=white_list %}
{% endif %}