File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from django import forms
22from django .contrib .auth import get_user_model
33
4- from .lists import LMS_MODULES_CHOICES , TIMEZONE_CHOICES
4+ from .lists import TIMEZONE_CHOICES
55from .models import CustomUser , Status
66
77
@@ -21,7 +21,7 @@ class SignupForm(forms.Form):
2121 label = '' )
2222 status = forms .ModelChoiceField (
2323 queryset = Status .objects .filter (admin_only = False ),
24- label = "Where are you currently in the programme? "
24+ label = "Programming Experience "
2525 )
2626 timezone = forms .CharField (
2727 widget = forms .Select (choices = TIMEZONE_CHOICES ),
@@ -58,10 +58,9 @@ class EditProfileForm(forms.ModelForm):
5858 max_length = 30 ,
5959 widget = forms .TextInput (attrs = {'placeholder' : 'Slack Display Name' }),
6060 label = '' )
61- # TODO: Change this based on privileges
6261 status = forms .ModelChoiceField (
6362 queryset = Status .objects .filter (admin_only = False ),
64- label = "Where are you currently in the programme? "
63+ label = "Programming Experience "
6564 )
6665 about = forms .CharField (widget = forms .Textarea (), required = False )
6766 website_url = forms .CharField (required = False )
You can’t perform that action at this time.
0 commit comments