diff --git a/crud_tests/test_flux.py b/crud_tests/test_flux.py index 16a63948a..1c7cfef42 100644 --- a/crud_tests/test_flux.py +++ b/crud_tests/test_flux.py @@ -178,8 +178,8 @@ def assert_on_detail_page(res, stub_name): @pytest.mark.parametrize("num_entries, page_size, ranges, page_list", [ (0, 6, [], []), (5, 5, [(0, 5)], []), - (10, 5, [(0, 5), (5, 10)], ['«', '1', '2', '»']), - (9, 4, [(0, 4), (4, 8), (8, 9)], ['«', '1', '2', '3', '»']), + (10, 5, [(0, 5), (5, 10)], ['Anterior', '1', '2', 'Próxima']), + (9, 4, [(0, 4), (4, 8), (8, 9)], ['Anterior', '1', '2', '3', 'Próxima']), ]) def test_flux_list_paginate_detail( app, monkeypatch, num_entries, page_size, ranges, page_list): diff --git a/templates/crud/list.html b/templates/crud/list.html index cfa20b5aa..854ff30b0 100644 --- a/templates/crud/list.html +++ b/templates/crud/list.html @@ -43,40 +43,6 @@ {% endif %} +{% include "paginacao.html" %} -{% if is_paginated %} -
-{% endif %} {% endblock %}