Bug fixing for consists

This commit is contained in:
2023-10-08 09:52:38 +02:00
parent c73efb01e4
commit 424b17ae58
5 changed files with 16 additions and 11 deletions

View File

@@ -26,9 +26,15 @@ urlpatterns = [
GetFlatpage.as_view(),
name="flatpage",
),
path("consists", Consists.as_view(), name="consists"),
path(
"consists/<int:page>", Consists.as_view(), name="consists_pagination"
"consists",
Consists.as_view(template="consists.html"),
name="consists"
),
path(
"consists/<int:page>",
Consists.as_view(template="consists.html"),
name="consists_pagination"
),
path("consist/<uuid:uuid>", GetConsist.as_view(), name="consist"),
path(