Я новичок в django и хочу передать list_choices из представления в формы.
Forms.py
Class CartTailleForm(forms.Form):
taille = forms.TypedChoiceField(choices=q)
def __init__(self,*args,**kwargs):
/* i don't know what to do*/
Просмотр .py
tailles= Taille.objects.filter(valable=True)
list= [(i.taille_name, str(i.taille_name)) for i in tailles]
form = CartTailleForm(q=list)