Changes between Version 3 and Version 4 of Ticket #28443
- Timestamp:
- Jul 28, 2017, 3:25:02 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28443 – Description
v3 v4 4 4 class AddressInput(widgets.MultiWidget): 5 5 def __init__(self, attrs=None): 6 self.widgets = widgets.HiddenInput(attrs), widgets.TextInput(attrs) .# note that the second widget would be customized, I'm only providing simplified example, which does produce the same error6 self.widgets = widgets.HiddenInput(attrs), widgets.TextInput(attrs) # note that the second widget would be customized, I'm only providing simplified example, which does produce the same error 7 7 super().__init__(self.widgets, attrs) 8 8