diff options
Diffstat (limited to 'website')
-rw-r--r-- | website/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/forms.py b/website/forms.py index 8d2242a..d6159a4 100644 --- a/website/forms.py +++ b/website/forms.py @@ -4,7 +4,7 @@ from website.models import * from spoken_auth.models import TutorialDetails, TutorialResources, FossCategory from django.db.models import Q tutorials = ( - ("", "Select a Tutorial"), + ("Select a Tutorial", "Select a Tutorial"), ) minutes = ( ) seconds = ( ) @@ -20,7 +20,7 @@ class NewQuestionForm(forms.Form): select_sec = kwargs.pop('second_range', None) super(NewQuestionForm, self).__init__(*args, **kwargs) tutorial_choices = ( - ("", "Select a Tutorial"), + ("Select a Tutorial", "Select a Tutorial"), ) # check minute_range, secpnd_range coming from spoken website # user clicks on post question link through website |