{% comment %} Django's form field error handling. Include in templates after the form field value. For example: {{ form.username }} {% include 'django_addons/clips/form_field_error_handling' %} Extracted as a snippet from django template. Copyright 2012-2023 TopDevPros Last modified: 2023-10-01 {% endcomment %} {% load i18n %} {% if not form.this_is_the_login_form.errors %} {{ form.username.errors }} {% endif %}