diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 92321d3b1e964a2cb444577cb3f1c6024afbffee..ba46a8a2f25b8008a37f4edcf3df8f2162b77dbc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -27,6 +27,7 @@ Fixed * Lessons weren't shown as cancelled on teacher or room timetables if events had replaced them. * The teacher dropdown in the substitution edit form did not contain suggestions. +* The URLs containing the term "substitution" were missspelled. `2.3`_ - 2022-03-21 ------------------- diff --git a/aleksis/apps/chronos/urls.py b/aleksis/apps/chronos/urls.py index 641bf2239d44a1069d2a7a4a209995421d889a71..411e5cd8284a32990e46f7d6cf70548cc2c26811 100644 --- a/aleksis/apps/chronos/urls.py +++ b/aleksis/apps/chronos/urls.py @@ -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", ),