creating 'empty' home view
This commit is contained in:
parent
2996924fe4
commit
886f71fb5c
2 changed files with 8 additions and 0 deletions
|
@ -9,6 +9,7 @@ urlpatterns = [
|
|||
url(r'^admin/', admin.site.urls),
|
||||
url(r'^event/', include('event.urls')),
|
||||
url(r'^user/', include('user.urls')),
|
||||
url(r'^', include('shared.urls')),
|
||||
]
|
||||
|
||||
if settings.DEBUG:
|
||||
|
|
7
shared/urls.py
Normal file
7
shared/urls.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.conf.urls import url
|
||||
from .views import Home
|
||||
|
||||
app_name = 'shared'
|
||||
urlpatterns = [
|
||||
url(r'$', Home.as_view(), name='home'),
|
||||
]
|
Loading…
Reference in a new issue