aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/urls.py
blob: 3c71687559106e8675f9671700747ff751f28dbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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('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')),
]