Skip to content

Commit

Permalink
Django 4
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Nov 5, 2024
1 parent 915890c commit 45d2df8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion django_site/pipeline_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"game",
"pipeline",
"portal",
"captcha",
"django_recaptcha",
"common",
"django.contrib.admin",
"django.contrib.admindocs",
Expand Down
2 changes: 1 addition & 1 deletion django_site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"game",
"pipeline",
"portal",
"captcha",
"django_recaptcha",
"common",
"django.contrib.admin",
"django.contrib.admindocs",
Expand Down
11 changes: 5 additions & 6 deletions django_site/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from django.conf.urls import include, url
from django.contrib import admin
from django.urls import path
from django.urls import include, path, re_path
from game import python_den_urls
from game import urls as game_urls
from portal import urls as portal_urls
Expand All @@ -12,9 +11,9 @@
admin.autodiscover()

urlpatterns = [
url(r"^", include(portal_urls)),
re_path(r"^", include(portal_urls)),
path("administration/", admin.site.urls),
url(r"^rapidrouter/", include(game_urls)),
url(r"^pythonden/", include(python_den_urls)),
url(r"^versions/$", versions, name="versions"),
re_path(r"^rapidrouter/", include(game_urls)),
re_path(r"^pythonden/", include(python_den_urls)),
re_path(r"^versions/$", versions, name="versions"),
]

0 comments on commit 45d2df8

Please sign in to comment.