aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/urls.py
blob: e475c491fe07048e8374bc936286812808b5fe8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from django.contrib import admin
from django.urls import include, path

from .views import HomeView

app_name = 'home'
urlpatterns = [
    path('', HomeView.as_view(), name='home'),
    path('', include('pydis_site.apps.redirect.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')),
]