Skip to content
Snippets Groups Projects
Commit 4a6acc8b authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Fix spelling in URLs

parent 8690909b
No related branches found
No related tags found
1 merge request!261Resolve ""substitution" is missspelled as "substition" in urls"
Pipeline #74404 passed with warnings
......@@ -26,6 +26,7 @@ Fixed
* Optimize exam model and add reference to exams at extra lessons.
* Lessons weren't shown as cancelled on teacher or room timetables
if events had replaced them.
* The URLs containing the term "substitution" were missspelled.
`2.3`_ - 2022-03-21
-------------------
......
......@@ -34,12 +34,12 @@ urlpatterns = [
name="lessons_day_by_date",
),
path(
"lessons/<int:id_>/<int:week>/substition/",
"lessons/<int:id_>/<int:week>/substitution/",
views.edit_substitution,
name="edit_substitution",
),
path(
"lessons/<int:id_>/<int:week>/substition/delete/",
"lessons/<int:id_>/<int:week>/substitution/delete/",
views.delete_substitution,
name="delete_substitution",
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment