view bandmap/urls.py @ 840:7735f8a6bd1f

Bandmap fix: Unicode band names were causing a crash.
author Brian Neal <bgneal@gmail.com>
date Sat, 04 Oct 2014 17:15:22 -0500
parents 5103edd3acc4
children 5ba2508939f7
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'),
    url(r'^query/$',
        'bandmap.views.query',
        name='bandmap-query'),
)