Given a Widget instance (*not* a Widget class), return a dictionary of any HTML attributes that should be added to the Widget, based on this Field.
(self, widget)
| 224 | return data |
| 225 | |
| 226 | def widget_attrs(self, widget): |
| 227 | """ |
| 228 | Given a Widget instance (*not* a Widget class), return a dictionary of |
| 229 | any HTML attributes that should be added to the Widget, based on this |
| 230 | Field. |
| 231 | """ |
| 232 | return {} |
| 233 | |
| 234 | def has_changed(self, initial, data): |
| 235 | """Return True if data differs from initial.""" |
no outgoing calls
no test coverage detected