Default implementations of the 15 templates required to do full login, logout, registration and password retrieval when using django-registration.
277
stars
77
forks
source link
Broken url tag in activation_complete.html #1
Closed
mikexstudios closed 14 years ago
In activation_complete.html, there is a line: ...You may now login using... This throws an exception since the
login
named url does not exist.The default django way to link to the login url is:
{% url auth_login %}
. Making this change resolved the error.