Merge branch 'develop' of github.com:ungleich/dynamicweb into develop

This commit is contained in:
Levi 2017-06-04 17:08:09 -05:00
commit 8adcb75b8c
20 changed files with 279 additions and 211 deletions

View file

@ -17,7 +17,7 @@ class SignupFormMixin(forms.ModelForm):
model = CustomUser
fields = ['name', 'email', 'password']
widgets = {
'name': forms.TextInput(attrs={'placeholder': 'Enter your name or company name'}),
'name': forms.TextInput(attrs={'placeholder': _('Enter your name or company name')}),
}
def clean_confirm_password(self):