diff options
Diffstat (limited to 'project')
-rw-r--r-- | project/scipycon/registration/views.py | 2 | ||||
-rw-r--r-- | project/scipycon/talk/forms.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/project/scipycon/registration/views.py b/project/scipycon/registration/views.py index 3e4de79..ecc4254 100644 --- a/project/scipycon/registration/views.py +++ b/project/scipycon/registration/views.py @@ -247,7 +247,7 @@ def submit_registration(request, scope, wifi = wifi_form.save(registrant, scope_entity) acco = acco_form.save(registrant, scope_entity) - send_confirmation(registrant, scope_entity,password=passwd) + send_confirmation(registrant, scope_entity, password=passwd) redirect_to = reverse('scipycon_registrations', kwargs={'scope': scope}) diff --git a/project/scipycon/talk/forms.py b/project/scipycon/talk/forms.py index 1b05ace..72ec853 100644 --- a/project/scipycon/talk/forms.py +++ b/project/scipycon/talk/forms.py @@ -47,7 +47,7 @@ class TalkSubmitForm(forms.Form): required=False, widget=forms.TextInput(attrs={'size':'50'})) duration = forms.ChoiceField(choices=DURATION_CHOICES, required=True, - label=u'Preferred timeslot', help_text=u'Select preferred time slot') + label=u'Preferred time slot', help_text=u'Select preferred time slot') audience = forms.ChoiceField(choices=AUDIENCE_CHOICES, label=u'Intended audience', help_text=u'Select one of the available options or enter other type of intended audience') # audience_other = forms.CharField(label=u'Other intended audience', |