0
votes
1answer
65 views
Django Forms - Can the initial value of one field be dependant on another?
Example, for this form:
>>> class CommentForm(forms.Form):
... name = forms.CharField(initial='class')
... action = forms.ChoiceField(...)
Can I have the choices in the action …
