summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xurls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index c1f661f..dae95a6 100755
--- a/urls.py
+++ b/urls.py
@@ -19,6 +19,9 @@ urlpatterns = patterns('',
# 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'),