I'm using Django's authentication, and in the login.html template, the following statement is generating an error:
{% url 'django.contrib.auth.views.login' %}
TemplateSyntaxError at /login
Caught NoReverseMatch while rendering: Reverse for ''django.contrib.auth.views.login'' with arguments '()' and keyword arguments '{}' not found.
This url is defined in my urls.py:
(r'^login$', 'django.contrib.auth.views.login')
I have installed the auth system:
INSTALLED_APPS = (
'django.contrib.auth',
...
)
Any ideas?