summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_scripts/urls.py
blob: 692638cecaf6086179f6f96647546b0ab98b348e (plain)
1
2
3
4
5
6
7
8
9
10
import os
from django.conf.urls import patterns

here = os.path.dirname(__file__)

urlpatterns = patterns('',
    (r'^custom_templates/(?P<path>.*)$', 'django.views.static.serve', {
        'document_root': os.path.join(here, 'custom_templates'),
    }),
)