summaryrefslogtreecommitdiffstats
path: root/apps/patchwork/forms.py
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2008-08-21 13:41:10 +0800
committerJeremy Kerr <jk@ozlabs.org>2008-08-21 13:41:10 +0800
commiteb6db921938c72c0655ca2e381818a471f99f5fa (patch)
tree9d66e6962f134d2116aacaeef3b3abe2177156ae /apps/patchwork/forms.py
parentecea8781acaa636186880d24351a6b712d4d3ce5 (diff)
downloadpatchwork-eb6db921938c72c0655ca2e381818a471f99f5fa.tar.bz2
patchwork-eb6db921938c72c0655ca2e381818a471f99f5fa.tar.xz
Implement confirmation emails.
To do this, we need to allow sucessive requests for the same confirmation URL. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'apps/patchwork/forms.py')
-rw-r--r--apps/patchwork/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/patchwork/forms.py b/apps/patchwork/forms.py
index ed55c4f..22408d9 100644
--- a/apps/patchwork/forms.py
+++ b/apps/patchwork/forms.py
@@ -30,7 +30,7 @@ class RegisterForm(forms.ModelForm):
class Meta:
model = RegistrationRequest
- exclude = ['key']
+ exclude = ['key', 'active', 'date']
def clean_email(self):
value = self.cleaned_data['email']