fix syntax error

this is why we need CI
This commit is contained in:
Valentin Gagarin 2025-02-18 17:44:44 +01:00
parent 73c9c884d7
commit d39c052ff7

View file

@ -22,6 +22,6 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('', views.Index.as_view(), name='index'),
path("", include("django.contrib.auth.urls")),
path("account/", views.AccountDetail.as_view(), name='accountdetail')
path("account/", views.AccountDetail.as_view(), name='accountdetail'),
path("services/", views.ServiceList.as_view(), name='service_list'),
]