Claude Paroz
|
43b574007e
|
Fixed #28192 -- Required passing optional form field args as keyword args.
|
2017-06-03 10:49:01 -04:00 |
Tim Graham
|
8e752d8437
|
Refs #28192 -- Made MultiValueField/ComboField fields argument required as documented.
|
2017-06-03 10:15:46 -04:00 |
Jon Dufresne
|
29a518006f
|
Fixed #28265 -- Prevented renderer warning on Widget.render() with **kwargs.
|
2017-06-02 09:46:43 -04:00 |
Jon Dufresne
|
2c69824e5a
|
Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.
|
2017-06-01 19:08:59 -04:00 |
Manatsawin Hanmongkolchai
|
a0c07d77fc
|
Fixed #28242 -- Moved ImageField file extension validation to the form field.
|
2017-06-01 10:13:23 -04:00 |
Jon Dufresne
|
21046e7773
|
Fixed #28249 -- Removed unnecessary dict.keys() calls.
iter(dict) is equivalent to iter(dict.keys()).
|
2017-05-27 19:08:46 -04:00 |
Tom
|
7afb476469
|
Fixed #28226 -- Replaced use of str.join() with concatenation.
|
2017-05-27 13:59:05 -04:00 |
Tim Heap
|
5b6181f4d5
|
Fixed #27922 -- Added ErrorDict.get_json_data().
|
2017-05-27 09:19:42 -04:00 |
Alexander Kavanaugh
|
362fba87c9
|
Fixed #28159 -- Fixed BaseInlineFormSet._construct_form() crash when using save_as_new.
Regression in 4a246a02bd .
|
2017-05-03 07:45:51 -04:00 |
Tim Graham
|
d302e2c09c
|
Fixed #28157 -- Fixed choice ordering in form fields with grouped and non-grouped options.
Regression in b52c73008a .
|
2017-05-03 07:21:44 -04:00 |
Tim Graham
|
f04a404917
|
Fixed #28130 -- Fixed formset min_num validation with initial, unchanged forms.
Regression in f5c6295797 .
|
2017-04-28 09:32:40 -04:00 |
Claude Paroz
|
301de774c2
|
Refs #27795 -- Replaced many force_text() with str()
Thanks Tim Graham for the review.
|
2017-04-27 09:10:02 +02:00 |
Jon Dufresne
|
92bc727271
|
Replaced temporary lists used for passing arguments with iterables.
|
2017-04-26 10:54:20 -04:00 |
Jon Dufresne
|
3e91850dcc
|
Removed unneeded is True|False from bool expressions in widgets.py.
|
2017-04-21 12:34:18 -04:00 |
Jon Dufresne
|
581879a510
|
Fixed #28075 -- Prevented ChoiceWidget from localizing option values.
|
2017-04-21 12:14:40 -04:00 |
Tim Graham
|
af1f986360
|
Fixed #28059 -- Restored class attribute in <ul> of widgets that use multiple_input.html.
Regression in b52c73008a
|
2017-04-20 10:06:34 -04:00 |
Tim Graham
|
c09bf8d767
|
Fixed #28058 -- Restored empty BoundFields evaluating to True.
Regression in b52c73008a
|
2017-04-17 08:32:29 -04:00 |
Stefan Wehrmeyer
|
1aa8e8605c
|
Fixed #27989 -- Preserved empty QueryDicts for form's data/files args.
|
2017-04-01 18:43:39 -04:00 |
Claude Paroz
|
e487ffd3f0
|
Fixed #27866 -- Made ChoiceWidget.format_value() return a list
Thanks Tim Graham for the review.
|
2017-04-01 12:24:05 +02:00 |
heathervm
|
7d1e237753
|
Fixed #27993 -- Fixed model form default fallback for SelectMultiple.
|
2017-03-31 10:10:08 -04:00 |
James Beith
|
216bb2e8fb
|
Fixed #27975 -- Fixed crash if ModelChoiceField's queryset=None.
Regression in 9153d8fbd6385db9f48793662de789fc3d686841.
|
2017-03-22 08:51:12 -04:00 |
Tim Graham
|
075e93c16a
|
Refs #27919 -- Changed Widget.get_context() attrs kwarg to an arg.
|
2017-03-21 09:14:45 -04:00 |
Tim Graham
|
6ff356e891
|
Refs #27919 -- Passed ChoiceWidget.create_option() kwargs as expected.
|
2017-03-21 09:14:45 -04:00 |
Jon Dufresne
|
7edeeb74fe
|
Fixed #27957 -- Removed technical terms from InlineForeignKeyField/ModelMultipleChoiceField error messages.
|
2017-03-20 13:12:55 -04:00 |
Adonys Alea Boffill
|
cd2ad26cc9
|
Fixed #27724 -- Fixed SelectDateWidget redisplay if a year isn't chosen.
|
2017-03-18 15:14:52 -04:00 |
Tim Graham
|
44f9241c48
|
Refs #27563 -- Fixed ModelChoiceField.__deepcopy__() so forms don't share a queryset cache.
Thanks Luke Benstead for the report Simon Charettes for the fix.
|
2017-03-15 12:54:26 -04:00 |
Claude Paroz
|
540ae68a5c
|
Fixed #27920 -- Restored empty RadioSelect choice producing value=""
Regression in b52c73008a .
Thanks Tim Graham for the review.
|
2017-03-14 18:23:06 +01:00 |
Claude Paroz
|
8346680e1c
|
Refs #27795 -- Removed unneeded force_text calls
Thanks Tim Graham for the review.
|
2017-03-04 18:18:21 +01:00 |
Vytis Banaitis
|
3dcc351691
|
Refs #23919 -- Used yield from.
|
2017-02-23 20:06:01 -05:00 |
Anton Samarchyan
|
3eb679a869
|
Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.
|
2017-02-20 19:57:33 -05:00 |
Tim Graham
|
afcf44c101
|
Refs #23151 -- Removed RegexField's unused error_message parameter.
Should have been removed in b6ea1961eb .
|
2017-02-20 19:09:09 -05:00 |
Collin Anderson
|
fb7e0e01af
|
Fixed #27850 -- Made RelatedFieldWidgetWrapper call render() of the wrapped widget.
|
2017-02-20 08:48:03 -05:00 |
Mariusz Felisiak
|
0034e9af18
|
Fixed #5851 -- Allowed specifying different HTML attrs for SplitDateTimeWidget subwidgets.
Thanks Tim Graham and Nick Pope for review.
|
2017-02-07 11:33:37 -05:00 |
Claude Paroz
|
c651331b34
|
Converted usage of ugettext* functions to their gettext* aliases
Thanks Tim Graham for the review.
|
2017-02-07 09:04:04 +01:00 |
Tim Graham
|
4353640ea9
|
Fixed #27805 -- Fixed ClearableFileInput's "Clear" checkbox on model fields with a default.
|
2017-02-06 20:31:04 -05:00 |
Vytis Banaitis
|
8838d4dd49
|
Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.
|
2017-02-01 11:41:56 -05:00 |
Jon Dufresne
|
6d8979f4c2
|
Fixed #27758 -- Reallowed AdvancedModelIterator pattern after template widget rendering.
|
2017-01-31 09:41:51 -05:00 |
Tim Graham
|
e07e743e0c
|
Refs #23919 -- Used DeclarativeFieldsMetaclass.__prepare__() for tracking form field order.
|
2017-01-27 12:46:21 -05:00 |
Tim Graham
|
af598187ec
|
Removed unnecessary force_text() in BaseTemporalField.to_python().
This seems unneeded since its introduction in
da3aa22d04 .
|
2017-01-26 13:35:39 -05:00 |
Vytis Banaitis
|
d1bab24e01
|
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
|
2017-01-26 08:19:27 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Jon Dufresne
|
0d74c41981
|
Replaced dict() usage with dict literals.
Literals are faster and more idiomatic.
|
2017-01-23 19:13:49 -05:00 |
Jon Dufresne
|
f0573aad4b
|
Replaced "not var is ..." with "is not" in attrs.html.
|
2017-01-23 13:14:00 -05:00 |
Jon Dufresne
|
5fa390ee81
|
Fixed #27759 -- Prevented forms attrs.html template from rendering False attrs.
Regression in b52c73008a .
|
2017-01-23 08:49:00 -05:00 |
Jon Dufresne
|
88183117c2
|
Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.
|
2017-01-23 07:44:57 -05:00 |
Jon Dufresne
|
ecd5944666
|
Removed ChoiceWidget.render() as it duplicates parent implementation.
|
2017-01-23 07:33:27 -05:00 |
Claude Paroz
|
6e55e1d88a
|
Refs #23919 -- Replaced six.reraise by raise
|
2017-01-22 20:08:04 +01:00 |
Tim Graham
|
d170c63351
|
Refs #23919 -- Removed misc references to Python 2.
|
2017-01-21 20:02:00 -05:00 |
Mariusz Felisiak
|
c22212220a
|
Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).
|
2017-01-21 14:28:16 -05:00 |
Tim Graham
|
4e729feaa6
|
Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.
These functions do nothing on Python 3.
|
2017-01-20 08:01:02 -05:00 |