From 2c510adca94bace5fe39c695dd5b46716ab662fb Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Thu, 12 Dec 2013 12:17:26 +0000 Subject: [PATCH] Fix problem with missing label= in community form field declation - Legacy-Id: 6900 --- ietf/community/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/community/forms.py b/ietf/community/forms.py index 63d5b9bf6..3797b7816 100644 --- a/ietf/community/forms.py +++ b/ietf/community/forms.py @@ -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')