urls.py
changeset 54 b3f4888a78a1
parent 37 c701e68f8d35
--- a/urls.py	Fri Jan 07 13:37:38 2011 +0530
+++ b/urls.py	Fri Jan 07 13:46:11 2011 +0530
@@ -19,6 +19,9 @@
     # Uncomment the next line to enable the admin:
     (r'^admin/', include(admin.site.urls)),
 
+    (r'^static/(?P<path>.*)$', 'django.views.static.serve',
+            {'document_root': './static/'}),
+
     url(r'^accounts/register/$', register,
         {'form_class': CustomRegistrationForm},
         name='registration_register'),