Skip to content
Snippets Groups Projects
Commit 9e8e2259 authored by Julian's avatar Julian
Browse files

Change the ook a little bit

parent c94c693c
No related branches found
No related tags found
1 merge request!86Merge school-apps
......@@ -16,19 +16,21 @@ class FeedbackForm(forms.Form):
design_rating = forms.ChoiceField(label="Design",
choices=ratings,
widget=forms.RadioSelect)
widget=forms.RadioSelect(attrs={"checked": "checked"}),
required=True,
)
performance_rating = forms.ChoiceField(label='Geschwindigkeit',
choices=ratings,
widget=forms.RadioSelect(attrs={}),
required=False)
widget=forms.RadioSelect(attrs={"checked": "checked"}),
required=True)
usability_rating = forms.ChoiceField(label='Benutzerfreundlichkeit',
choices=ratings,
widget=forms.RadioSelect(attrs={"checked": "checked"}),
required=True)
overall_rating = forms.ChoiceField(label='Bitte bewerte SchoolApps insgesamt auf einer Skala von 1 bis 10',
overall_rating = forms.ChoiceField(label='SchoolApps allgemein',
choices=ratings,
widget=forms.RadioSelect(attrs={"checked": "checked"}),
required=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment