diff options
author | 2021-10-06 22:38:16 +0100 | |
---|---|---|
committer | 2021-10-06 22:38:16 +0100 | |
commit | 3c2fcb86b7aad1ddca92e54c2fd39693e55109f8 (patch) | |
tree | 2eab9855ab1a83352a5d83050d8a1fc0524f3285 /pydis_site/apps/home/urls.py | |
parent | Merge pull request #599 from python-discord/fix-http-links (diff) | |
parent | Merge branch 'master' into subdomains-to-query-paths (diff) |
Merge pull request #526 from python-discord/subdomains-to-query-paths
Diffstat (limited to 'pydis_site/apps/home/urls.py')
-rw-r--r-- | pydis_site/apps/home/urls.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py index bb77220b..57abc942 100644 --- a/pydis_site/apps/home/urls.py +++ b/pydis_site/apps/home/urls.py @@ -1,16 +1,9 @@ -from django.contrib import admin -from django.urls import include, path +from django.urls import path from .views import HomeView, timeline app_name = 'home' urlpatterns = [ path('', HomeView.as_view(), name='home'), - path('', include('pydis_site.apps.redirect.urls')), - path('', include('django_prometheus.urls')), - path('admin/', admin.site.urls), - path('resources/', include('pydis_site.apps.resources.urls')), - path('pages/', include('pydis_site.apps.content.urls')), - path('events/', include('pydis_site.apps.events.urls', namespace='events')), path('timeline/', timeline, name="timeline"), ] |