From d7d0a0c8e9ed9264060f42ef6f405e4fd498c599 Mon Sep 17 00:00:00 2001 From: Samir Shah Date: Tue, 11 Jul 2017 14:53:06 +0300 Subject: [PATCH] Fixed rendering of form errors in tests/templates/login.html. --- tests/templates/login.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/templates/login.html b/tests/templates/login.html index 0d301600a5..d1aa5f6b7c 100644 --- a/tests/templates/login.html +++ b/tests/templates/login.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block title %}Login{% endblock %} {% block content %} -{% if form.has_errors %} +{% if form.errors %}

Your username and password didn't match. Please try again.

{% endif %}