P
Mark directory as -> source root
Size: a a a
P
tn
DT
tn
class VotingForm(forms.Form):
def __init__(self, choices, *args, **kwargs):
super(VotingForm, self).__init__(*args, **kwargs)
self.fields['choices'] = forms.ChoiceField(choices=choices, widget=forms.RadioSelect)
P
BE
DT
BE
DT
Z
Z
BE
N
N
DT
N
N
RN
DT