Files @ caa0ff7b861d
Branch filter:

Location: website/conservancy/contacts/urls.py

bsturmfels
Load JS through Django's staticfiles app

This avoids the need for adjustments during development and allows production to
be served under a single /static declaration in Apache.
1
2
3
4
5
from django.conf.urls import include, patterns, url

urlpatterns = patterns('www.contacts.views',
   (r'^/?$', 'subscribe'),
)