annotate bandmap/urls.py @ 826:d7e4c08b2e8b

Bandmap WIP: added admin action to update lat/lon.
author Brian Neal <bgneal@gmail.com>
date Sat, 27 Sep 2014 15:14:47 -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 )