diff options
| author | Sébastien Piquemal | 2012-01-31 23:21:55 +0200 |
|---|---|---|
| committer | Sébastien Piquemal | 2012-01-31 23:21:55 +0200 |
| commit | 279fa0d371b73974b87267edabe2a4f76a198ebb (patch) | |
| tree | 28b3a7aa6d489ad1e93acb14c3e890c8733f85cf /examples/urls.py | |
| parent | 152c385f4de37558fe4e522abad5b97f0cf7ddce (diff) | |
| parent | b2fcfffb3bdaed89d39ee563c58dc0ede5e857ac (diff) | |
| download | django-rest-framework-279fa0d371b73974b87267edabe2a4f76a198ebb.tar.bz2 | |
merge
Diffstat (limited to 'examples/urls.py')
| -rw-r--r-- | examples/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/urls.py b/examples/urls.py index b71c0a20..402fde28 100644 --- a/examples/urls.py +++ b/examples/urls.py @@ -1,6 +1,7 @@ from django.conf.urls.defaults import patterns, include, url from django.conf import settings from sandbox.views import Sandbox +from django.contrib.staticfiles.urls import staticfiles_urlpatterns urlpatterns = patterns('', (r'^$', Sandbox.as_view()), @@ -16,3 +17,4 @@ urlpatterns = patterns('', (r'^', include('djangorestframework.urls')), ) +urlpatterns += staticfiles_urlpatterns() |
