On Fri, Jul 12, 2013 at 1:27 PM, Sergio Pulgarín
<sergio.pulga...@gmail.com> wrote:
>
> In Django 1.5.1 I have a named url like this:
>
> url(r'confirm/', 'confirm_user', name='auth-confirm-user'),
>
> which gave me this error when I tried to using reverse, from
> django.core.urlresolvers, on it:
>
> NoReverseMatch at /auth/signup/
>
> Reverse for 'auth-confirm-user' with arguments '()' and keyword arguments
> '{}' not found.
>
>
> When I changed it to: name='auth-confirm', reverse worked.
>
>
> Is this by design? I couldn't find any reference to this
> on the documentation.

You don't give us any context but it seems the views and named URLs involved
are from your application and not provided by any of the applications shipped
with Django.

So I'd suggest to

a) Post to the -users mailing list. This list is for discussion about
the development
   of Django itself, not for support in discovering if there is a bug
in your app or Django.

b) Post more details like:

- Do you have another URL named 'auth-confirm'?
- Do you have more than one one URL called 'auth-confirm-user'?
- Do the arguments you are passing to the view match the ones it expects?

-- 
Ramiro Morales
@ramiromorales

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


Reply via email to