mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Merge branch 'add_paginator' into 'master'
Fix #28 : ajouter paginator en bas de page Closes #28 See merge request federez/re2o!34
This commit is contained in:
commit
8904cc148d
13 changed files with 45 additions and 1 deletions
|
@ -80,3 +80,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if facture_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=facture_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
|
@ -78,3 +78,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
{% if facture_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=facture_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -59,3 +59,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if revisions_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=revisions_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -144,4 +144,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if versions_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=versions_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -126,3 +126,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if machines_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=machines_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -54,3 +54,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if room_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=room_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -52,3 +52,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if constructor_switch_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=constructor_switch_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -54,3 +54,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if model_switch_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=model_switch_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -65,3 +65,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if switch_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=switch_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -56,3 +56,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if ban_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=ban_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -55,3 +55,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if clubs_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=clubs_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -57,3 +57,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if users_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=users_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
@ -56,3 +56,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{% if white_list.paginator %}
|
||||||
|
{% include "pagination.html" with list=white_list %}
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue