upgrade re_path to path (#533)

This commit is contained in:
thomas girod
2023-01-09 22:07:03 +01:00
committed by GitHub
parent 37216cd16b
commit 99827e005b
19 changed files with 528 additions and 536 deletions

View File

@ -732,9 +732,9 @@ class UVSearchTest(TestCase):
[
{
"id": 1,
"absolute_url": "/pedagogy/uv/1",
"update_url": "/pedagogy/uv/1/edit",
"delete_url": "/pedagogy/uv/1/delete",
"absolute_url": "/pedagogy/uv/1/",
"update_url": "/pedagogy/uv/1/edit/",
"delete_url": "/pedagogy/uv/1/delete/",
"code": "PA00",
"author": 0,
"credit_type": "OM",

View File

@ -22,33 +22,33 @@
#
#
from django.urls import re_path
from django.urls import path
from pedagogy.views import *
urlpatterns = [
# Urls displaying the actual application for visitors
re_path(r"^$", UVListView.as_view(), name="guide"),
re_path(r"^uv/(?P<uv_id>[0-9]+)$", UVDetailFormView.as_view(), name="uv_detail"),
re_path(
r"^comment/(?P<comment_id>[0-9]+)/edit$",
path("", UVListView.as_view(), name="guide"),
path("uv/<int:uv_id>/", UVDetailFormView.as_view(), name="uv_detail"),
path(
"comment/<int:comment_id>/edit/",
UVCommentUpdateView.as_view(),
name="comment_update",
),
re_path(
r"^comment/(?P<comment_id>[0-9]+)/delete$",
path(
"comment/<int:comment_id>/delete/",
UVCommentDeleteView.as_view(),
name="comment_delete",
),
re_path(
r"^comment/(?P<comment_id>[0-9]+)/report$",
path(
"comment/<int:comment_id>/report/",
UVCommentReportCreateView.as_view(),
name="comment_report",
),
# Moderation
re_path(r"^moderation$", UVModerationFormView.as_view(), name="moderation"),
path("moderation/", UVModerationFormView.as_view(), name="moderation"),
# Administration : Create Update Delete Edit
re_path(r"^uv/create$", UVCreateView.as_view(), name="uv_create"),
re_path(r"^uv/(?P<uv_id>[0-9]+)/delete$", UVDeleteView.as_view(), name="uv_delete"),
re_path(r"^uv/(?P<uv_id>[0-9]+)/edit$", UVUpdateView.as_view(), name="uv_update"),
path("uv/create/", UVCreateView.as_view(), name="uv_create"),
path("uv/<int:uv_id>/delete/", UVDeleteView.as_view(), name="uv_delete"),
path("uv/<int:uv_id>/edit/", UVUpdateView.as_view(), name="uv_update"),
]