index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
forms
/
utils.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed #34077 -- Added form field rendering.
David Smith
2023-03-24
1
-0
/
+23
*
Refs #32339 -- Changed default form and formset rendering style to div-based.
Mariusz Felisiak
2023-01-17
1
-20
/
+0
*
Refs #32365 -- Removed support for pytz timezones per deprecation timeline.
Mariusz Felisiak
2023-01-17
1
-3
/
+1
*
Refs #32339 -- Deprecated default.html form template.
David Smith
2022-05-17
1
-5
/
+23
*
Fixed #32339 -- Added div.html form template.
David Smith
2022-05-05
1
-0
/
+4
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-36
/
+43
*
Fixed #33130 -- Restored form errors to be a dict.
Jaap Roes
2021-09-24
1
-4
/
+4
*
Fixed #31026 -- Switched form rendering to template engine.
David Smith
2021-09-20
1
-45
/
+71
*
Refs #32365 -- Allowed use of non-pytz timezone implementations.
Paul Ganssle
2021-01-19
1
-0
/
+5
*
Fixed #30261 -- Prevented Form._html_output() from mutating errors if hidden ...
Hasan Ramezani
2020-02-13
1
-0
/
+5
*
Removed some outdated backwards compatibility imports and misleading comments.
Mads Jensen
2019-09-24
1
-1
/
+1
*
Fixed #30400 -- Improved typography of user facing strings.
Jon Dufresne
2019-06-28
1
-1
/
+1
*
Refs #23668 -- Removed passing default argument of current TZ to make_aware()...
Jon Dufresne
2018-01-18
1
-2
/
+1
*
Avoided creating temporary lists for obtaining the first item.
Sergey Fedoseev
2017-07-31
1
-2
/
+2
*
Fixed #27922 -- Added ErrorDict.get_json_data().
Tim Heap
2017-05-27
1
-1
/
+4
*
Refs #27795 -- Removed unneeded force_text calls
Claude Paroz
2017-03-04
1
-4
/
+3
*
Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.
Anton Samarchyan
2017-02-20
1
-1
/
+1
*
Converted usage of ugettext* functions to their gettext* aliases
Claude Paroz
2017-02-07
1
-1
/
+1
*
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
1
-1
/
+1
*
Refs #23919 -- Replaced six.reraise by raise
Claude Paroz
2017-01-22
1
-13
/
+8
*
Refs #23919 -- Removed misc references to Python 2.
Tim Graham
2017-01-21
1
-5
/
+1
*
Refs #23919 -- Removed obsolete __ne__() methods.
Aymeric Augustin
2017-01-18
1
-3
/
+0
*
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
Claude Paroz
2017-01-18
1
-3
/
+1
*
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2017-01-18
1
-2
/
+0
*
Fixed #27642 -- Made forms.utils.flatatt() omit 'None' values from attrs.
Illia Volochii
2016-12-27
1
-1
/
+1
*
Refs #25294 -- Moved BoundField to django.forms.boundfield.
Moritz Sichert
2015-09-16
1
-0
/
+7
*
Fixed typo in django/forms/utils.py docstring.
Kholid Fuadi
2015-09-14
1
-1
/
+1
*
Made flatatt docstring match reality
Matthew Schinckel
2015-06-08
1
-3
/
+5
*
Fixed #24469 -- Refined escaping of Django's form elements in non-Django temp...
Moritz Sichert
2015-03-27
1
-1
/
+3
*
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-06
1
-11
/
+7
*
Removed redundant numbered parameters from str.format().
Berker Peksag
2014-12-03
1
-6
/
+6
*
Fixed #23883 -- Stopped flatatt modifying its argument
Tim Heap
2014-11-21
1
-7
/
+8
*
Fixed #23594 -- Fixed deepcopy on ErrorList.
Loic Bistuer
2014-10-07
1
-0
/
+9
*
Fixed #11776 -- Added CSS class for non-field/top of form errors.
Nick Presta
2014-06-02
1
-1
/
+11
*
Fixed #20684 -- Added support for HTML5 boolean attributes to form widgets.
Loic Bistuer
2014-03-22
1
-15
/
+12
*
Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warnings
Claude Paroz
2014-03-08
1
-2
/
+3
*
Reworked ErrorDict.as_json() to prevent unnecessary serialization/deserializa...
Loic Bistuer
2014-03-06
1
-11
/
+13
*
Fixed #21962 -- Added escape_html flag to ErrorDict.as_json()
vvojvoda
2014-02-28
1
-5
/
+6
*
Refs #17413 -- Added isinstance backward compatibility on ErrorList.
Loic Bistuer
2013-12-18
1
-1
/
+1
*
Fixed #17413 -- Serialization of form errors along with all metadata.
Loic Bistuer
2013-12-16
1
-12
/
+54
*
Fixed E124 pep8 warnings.
Loic Bistuer
2013-12-10
1
-10
/
+8
*
More attacking E302 violators
Alex Gaynor
2013-11-02
1
-0
/
+5
*
Fixed #21270 -- Fixed E701 pep8 warnings
Alasdair Nicol
2013-10-17
1
-3
/
+6
*
Fixed #17627 -- Renamed util.py files to utils.py
Tim Graham
2013-09-16
1
-0
/
+117