Skip to content

Commit

Permalink
More logic ordering of URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
kallewesterling committed Sep 11, 2024
1 parent d4ff701 commit 1fd97ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seshat/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
from django.conf.urls.static import static

urlpatterns = [
path("admin/", admin.site.urls),
path("", include("seshat.apps.core.urls")),
path("admin/", admin.site.urls),
path("accounts/", include("allauth.urls")),
path("profiles/", include("seshat.apps.accounts.urls")),
path("general/", include("seshat.apps.general.urls")),
Expand Down

0 comments on commit 1fd97ee

Please sign in to comment.