Sort of works now

This commit is contained in:
Jonathan Cremin 2015-01-17 23:54:26 +00:00
parent 593f3e6d1c
commit 5972323cc1
15 changed files with 453 additions and 6 deletions

View file

@ -5,6 +5,7 @@ urlpatterns = patterns('',
# Examples:
# url(r'^$', 'minie.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
url(r'^$', 'links.views.home', name='home'),
url(r'^admin/', include(admin.site.urls)),
url(r'(.*)', 'links.views.catchall', name='short'),
)