Fix problem with missing label= in community form field declation
- Legacy-Id: 6900
This commit is contained in:
parent
950efbbae3
commit
2c510adca9
|
@ -52,7 +52,7 @@ class DisplayForm(forms.ModelForm):
|
|||
|
||||
class SubscribeForm(forms.Form):
|
||||
|
||||
email = forms.EmailField("Your email")
|
||||
email = forms.EmailField(label="Your email")
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.clist = kwargs.pop('clist')
|
||||
|
|
Loading…
Reference in a new issue