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

@ -22,13 +22,13 @@
#
#
from django.urls import re_path
from django.urls import path
from matmat.views import *
urlpatterns = [
re_path(r"^$", SearchNormalFormView.as_view(), name="search"),
re_path(r"^reverse$", SearchReverseFormView.as_view(), name="search_reverse"),
re_path(r"^quick$", SearchQuickFormView.as_view(), name="search_quick"),
re_path(r"^clear$", SearchClearFormView.as_view(), name="search_clear"),
path("", SearchNormalFormView.as_view(), name="search"),
path("reverse/", SearchReverseFormView.as_view(), name="search_reverse"),
path("quick/", SearchQuickFormView.as_view(), name="search_quick"),
path("clear/", SearchClearFormView.as_view(), name="search_clear"),
]