Skip to content

Commit f01baf8

Browse files
committed
Update label and broken import
1 parent cae992d commit f01baf8

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

accounts/forms.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from django import forms
22
from django.contrib.auth import get_user_model
33

4-
from .lists import LMS_MODULES_CHOICES, TIMEZONE_CHOICES
4+
from .lists import TIMEZONE_CHOICES
55
from .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)

0 commit comments

Comments
 (0)