Browse Source

Fix #28 : ajouter paginator en bas de page

fix_superuser
FERNET Laouen 8 years ago
committed by root
parent
commit
2b5a9f7cc1
  1. 4
      cotisations/templates/cotisations/aff_cotisations.html
  2. 3
      cotisations/templates/cotisations/control.html
  3. 4
      logs/templates/logs/aff_stats_logs.html
  4. 4
      logs/templates/logs/aff_summary.html
  5. 3
      machines/templates/machines/aff_machines.html
  6. 4
      topologie/templates/topologie/aff_chambres.html
  7. 4
      topologie/templates/topologie/aff_constructor_switch.html
  8. 4
      topologie/templates/topologie/aff_model_switch.html
  9. 4
      topologie/templates/topologie/aff_switch.html
  10. 3
      users/templates/users/aff_bans.html
  11. 3
      users/templates/users/aff_clubs.html
  12. 3
      users/templates/users/aff_users.html
  13. 3
      users/templates/users/aff_whitelists.html

4
cotisations/templates/cotisations/aff_cotisations.html

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

3
cotisations/templates/cotisations/control.html

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

4
logs/templates/logs/aff_stats_logs.html

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

4
logs/templates/logs/aff_summary.html

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

3
machines/templates/machines/aff_machines.html

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

4
topologie/templates/topologie/aff_chambres.html

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

4
topologie/templates/topologie/aff_constructor_switch.html

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

4
topologie/templates/topologie/aff_model_switch.html

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

4
topologie/templates/topologie/aff_switch.html

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

3
users/templates/users/aff_bans.html

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

3
users/templates/users/aff_clubs.html

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

3
users/templates/users/aff_users.html

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

3
users/templates/users/aff_whitelists.html

@ -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…
Cancel
Save