view bandmap/urls.py @ 974:d260aef91ad7

Prevent post preview from allowing mixed content. Apply image_check() to post previews and display an error message instead of the preview if it fails.
author Brian Neal <bgneal@gmail.com>
date Thu, 01 Oct 2015 20:18:48 -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'),
)