Create a super-simple homepage
This commit is contained in:
parent
8bd2faa8a9
commit
55abf1780e
9 changed files with 75 additions and 1 deletions
8
home/urls.py
Normal file
8
home/urls.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from django.conf.urls import url
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = 'home'
|
||||
urlpatterns = [
|
||||
url(r'^$', views.index, name='index'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue