Reorganise project layout
This commit is contained in:
parent
206434b7de
commit
2dee05b51e
17 changed files with 10 additions and 103 deletions
7
project/urls.py
Normal file
7
project/urls.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.conf.urls import patterns, include, url
|
||||
from django.contrib import admin
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'^$', 'app.views.home', name='home'),
|
||||
url(r'(.*)', 'app.views.catchall', name='short'),
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue