add the url pattern for the index page

This commit is contained in:
Andreas Zweili 2019-10-20 21:22:41 +02:00
parent a699d3071a
commit 41e4b1426b
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from django.urls import path, include
from . import views
urlpatterns = [
path('', views.index_view, name='index'),
]