On Mon, Jun 24, 2013 at 3:58 PM, Tom Evans <tevans...@googlemail.com> wrote:
>
> Looks like you've updated your {% url %} tags to quote the view name,
> and in this case, you've quoted both the view name and the argument
> that should be used. This leads django to not find the view name.
>
> Eg: {% url "email_validation_process" key %}
>
> and not: {% url "email_validation_process key" %}


 Okay now that error removed but now i am facing new error

 TypeError at /accounts/register/complete/
 __init__() takes exactly 1 argument (3 given)

In my urls under en.py file i have

   # Registration
    url(r'^register/$', register, name='signup'),

    url(r'^register/validate/$', TemplateView,
        {'template' : 'userprofile/account/validate.html'},
        name='signup_validate'),

    url(r'^register/complete/$', TemplateView,
        {'template': 'userprofile/account/registration_done.html'},
        name='signup_complete'),

--
Deepak Kumar Sharma
Blog:
http://deekysharma.wordpress.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to