Changes between Initial Version and Version 1 of Ticket #36212
- Timestamp:
- Feb 24, 2025, 12:09:45 AM (6 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36212 – Description
initial v1 3 3 How about providing type safe access to form field data? 4 4 5 ``` 5 6 {{{ 6 7 class FormOptions(forms.Form): 7 8 prompt = forms.CharField(widget=forms.Textarea) … … 9 10 10 11 form_options = FormOptions({'prompt': 'a', 'n': 2}) 11 ``` 12 }}} 12 13 13 14 one could access it as: