Mercurial > public > sg101
view bandmap/urls.py @ 825:d91356818cef
Bandmap WIP: added test to add band.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 25 Sep 2014 21:15:22 -0500 |
parents | 9a0df7bd2409 |
children | 5103edd3acc4 |
line wrap: on
line source
"""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'), )