mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
Bug fixing for consists
This commit is contained in:
@@ -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(
|
||||
|
Reference in New Issue
Block a user