annotate bandmap/urls.py @ 824:704b47356a49

Bandmap WIP: made a start on view unit tests.
author Brian Neal <bgneal@gmail.com>
date Wed, 24 Sep 2014 21:22:24 -0500
parents 9a0df7bd2409
children 5103edd3acc4
rev   line source
bgneal@820 1 """urls for the bandmap application"""
bgneal@820 2 from django.conf.urls import patterns, url
bgneal@820 3
bgneal@820 4 urlpatterns = patterns('',
bgneal@820 5 url(r'^$',
bgneal@820 6 'bandmap.views.map_view',
bgneal@820 7 name='bandmap-map'),
bgneal@820 8 url(r'^add/$',
bgneal@820 9 'bandmap.views.add_band',
bgneal@820 10 name='bandmap-add'),
bgneal@820 11 )