Fixed rendering of form errors in tests/templates/login.html.
This commit is contained in:
parent
ca74e56350
commit
d7d0a0c8e9
|
@ -1,7 +1,7 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}Login{% endblock %}
|
||||
{% block content %}
|
||||
{% if form.has_errors %}
|
||||
{% if form.errors %}
|
||||
<p>Your username and password didn't match. Please try again.</p>
|
||||
{% endif %}
|
||||
|
||||
|
|
Loading…
Reference in New Issue