Changes between Version 3 and Version 4 of Ticket #28443


Ignore:
Timestamp:
Jul 28, 2017, 3:25:02 AM (7 years ago)
Author:
adam-kral
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28443 – Description

    v3 v4  
    44class AddressInput(widgets.MultiWidget):
    55    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 error
     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 error
    77        super().__init__(self.widgets, attrs)
    88
Back to Top