From 95b161920fc3e742a096f62a5fc3fc027dc4e19b Mon Sep 17 00:00:00 2001 From: supertom01 Date: Tue, 17 Sep 2024 14:25:35 +0200 Subject: [PATCH] Add i18n urls --- amelie/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/amelie/urls.py b/amelie/urls.py index eb3ba96..9f5eedf 100644 --- a/amelie/urls.py +++ b/amelie/urls.py @@ -23,6 +23,7 @@ path('profile/edit/', views.profile_edit, name='profile_edit'), path('profile////', views.profile_actions, name='profile_actions'), path('oidc/', include('mozilla_django_oidc.urls')), + path("i18n/", include("django.conf.urls.i18n")), # General views path('', views.frontpage, name='frontpage'),