I mean like really consistent.

This commit is contained in:
Víðir Valberg Guðmundsson 2019-03-26 22:00:17 +01:00
parent 241bc650b3
commit 8674029c5c
1 changed files with 3 additions and 3 deletions

View File

@ -19,9 +19,9 @@ from villages.views import *
admin.site.login = login_required(admin.site.login)
urlpatterns = [
path('account/', include('allauth.urls')),
path('account/', include('allauth_2fa.urls')),
path('account/', include('profiles.urls', namespace='profiles')),
path('profile/', include('allauth.urls')),
path('profile/', include('allauth_2fa.urls')),
path('profile/', include('profiles.urls', namespace='profiles')),
path(
'tickets/',
include('tickets.urls', namespace='tickets')