diff options
-rwxr-xr-x | urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,8 @@ from django.conf.urls.defaults import * from registration.views import register from pytask.profile.forms import CustomRegistrationForm +from django.shortcuts import redirect + # Uncomment the next two lines to enable the admin: # from django.contrib import admin # admin.autodiscover() @@ -16,7 +18,6 @@ urlpatterns = patterns('', # Uncomment the next line to enable the admin: # (r'^admin/', include(admin.site.urls)), - url(r'localhost:8000', None, name="site"), url(r'^accounts/register/$', register, {'form_class': CustomRegistrationForm}, |