urls_dev.py 292 Bytes
Newer Older
David Baumgold committed
1 2 3 4 5
"""
URLconf for development-only views.
This gets imported by urls.py and added to its URLconf if we are running in
development mode; otherwise, it is ignored.
"""
6 7 8 9 10
from django.conf.urls import url

urlpatterns = (
    url(r'^dev_mode$', 'contentstore.views.dev.dev_mode', name='dev_mode'),
)