Commit fb3f5c07 authored by Michal Čihař's avatar Michal Čihař

Use consistent field labels here

parent a85c6af8
......@@ -29,6 +29,9 @@ class UserForm(forms.ModelForm):
self.fields['first_name'].required = True
self.fields['last_name'].required = True
self.fields['email'].required = True
self.fields['first_name'].label = _('First name')
self.fields['last_name'].label = _('Last name')
self.fields['email'].label = _('E-mail')
class ContactForm(forms.Form):
subject = forms.CharField(label = _('Subject'), required = True)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment