# HG changeset patch # User Nishanth Amuluru # Date 1294388171 -19800 # Node ID b3f4888a78a15ab047ceee8e66a220207b3a1f76 # Parent 5daf523e20b4ad43e693cb102da4742b1a5e11e3 added url to serve css as a static page diff -r 5daf523e20b4 -r b3f4888a78a1 urls.py --- 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.*)$', 'django.views.static.serve', + {'document_root': './static/'}), + url(r'^accounts/register/$', register, {'form_class': CustomRegistrationForm}, name='registration_register'),