Mercurial > public > sg101
diff bandmap/urls.py @ 820:9a0df7bd2409
Bandmap application work in progress.
Model defined.
Map is displaying.
Initial display of add form.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 21 Sep 2014 18:20:29 -0500 |
parents | |
children | 5103edd3acc4 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bandmap/urls.py Sun Sep 21 18:20:29 2014 -0500 @@ -0,0 +1,11 @@ +"""urls for the bandmap application""" +from django.conf.urls import patterns, url + +urlpatterns = patterns('', + url(r'^$', + 'bandmap.views.map_view', + name='bandmap-map'), + url(r'^add/$', + 'bandmap.views.add_band', + name='bandmap-add'), +)