blob: c9d2935d7fc0c67cc0983f633a45317169531ef6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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('events/', include('pydis_site.apps.events.urls', namespace='events')),
]
|