Monitor and fix Django input widget #7
Labels
bug
Something isn't working
depends-on-django
This depends on fixes / code from Django itsself
html5
Things related to HTML5
As of this writing (currently: Django 2.0.4), while rendering forms with Django, the file https://github.com/django/django/blob/2.0.4/django/forms/templates/django/forms/widgets/input.html is used. It appends a trailing slash to input-widgets, which is not fully html5-compliant.
However, in
master
, this issue is already fixed and should be included NLT Django 2.1.0.Currently, the form-widgets are included in the html-templates manually, meaning that they are hardcoded. Of course, this has to be changed to return to
{{ form.field }}
again.The text was updated successfully, but these errors were encountered: