[Django]-Reverse for ''*'' with arguments '()' and keyword arguments '{}' not found

6👍

There shouldn’t be any '' surrounding the view name in the url tag – check the documentation out.
(Unless you’re using the Django’s 1.5 future {% url %} tag.)

1👍

this error also occurs this way :

<a href="{% url 'profiles_profile_detail' user.username %}">My account</a>

the message will be this one

Reverse for ''profiles_profile_detail'' with arguments '(u'mynick',)' and keyword arguments '{}' not found.

once the two ” dropped like explain erlier everything works fine 😉

Leave a comment