diff options
author | adityacp | 2018-02-28 16:54:22 +0530 |
---|---|---|
committer | adityacp | 2018-02-28 16:58:03 +0530 |
commit | 3bbaff2ebca026042cce3deb025effb9e83e0859 (patch) | |
tree | 071dab1d0a4097a0243cb6b9baf9f917693ab40d /yaksh/forms.py | |
parent | 438f8657021981fc7b2e5adbacc13eb332a2e6d3 (diff) | |
download | online_test-3bbaff2ebca026042cce3deb025effb9e83e0859.tar.gz online_test-3bbaff2ebca026042cce3deb025effb9e83e0859.tar.bz2 online_test-3bbaff2ebca026042cce3deb025effb9e83e0859.zip |
Change forms.py, models.py, test_models.py and templates
- Add help text for timezone field in user registration form
- Add new method in course model to get days remaining to start a course
- Show start time and end time of a course to the students
- Disallow to enroll to a course which is not active
- Add model test for the new course method
Diffstat (limited to 'yaksh/forms.py')
-rw-r--r-- | yaksh/forms.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/yaksh/forms.py b/yaksh/forms.py index 258a1ee..6b8d1c1 100644 --- a/yaksh/forms.py +++ b/yaksh/forms.py @@ -85,10 +85,12 @@ class UserRegisterForm(forms.Form): department = forms.CharField( max_length=64, help_text='Department you work/study at') position = forms.CharField( - max_length=64, help_text='Student/Faculty/Researcher/Industry/etc.') + max_length=64, + help_text='Student/Faculty/Researcher/Industry/Fellowship/etc.') timezone = forms.ChoiceField( choices=[(tz, tz) for tz in pytz.common_timezones], - initial=pytz.utc) + help_text='Course timings are shown based on the selected timezone', + initial=pytz.country_timezones['IN'][0]) def clean_username(self): u_name = self.cleaned_data["username"] |