Changes between Initial Version and Version 1 of Ticket #36212


Ignore:
Timestamp:
Feb 24, 2025, 12:09:45 AM (6 hours ago)
Author:
Justin Black
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36212 – Description

    initial v1  
    33How about providing type safe access to form field data?
    44
    5 ```
     5
     6{{{
    67class FormOptions(forms.Form):
    78    prompt = forms.CharField(widget=forms.Textarea)
     
    910
    1011form_options = FormOptions({'prompt': 'a', 'n': 2})
    11 ```
     12}}}
    1213
    1314one could access it as:
Back to Top