diff options
author | Magnus Hagander | 2013-08-18 16:20:15 +0000 |
---|---|---|
committer | Magnus Hagander | 2013-08-18 16:20:15 +0000 |
commit | d2218d1f1c336621cd8f6e75094da61bc1f67006 (patch) | |
tree | 17bcc072afaedf4115e1cfe54e720ec2085f1e8e /pgcommitfest/commitfest/forms.py | |
parent | a17c99cafe74453dd6b87b257837b18e46a4390d (diff) |
Add lastmail to fields excluded from editing
Diffstat (limited to 'pgcommitfest/commitfest/forms.py')
-rw-r--r-- | pgcommitfest/commitfest/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/forms.py b/pgcommitfest/commitfest/forms.py index af7ed99..2a70cc8 100644 --- a/pgcommitfest/commitfest/forms.py +++ b/pgcommitfest/commitfest/forms.py @@ -33,7 +33,7 @@ class CommitFestFilterForm(forms.Form): class PatchForm(forms.ModelForm): class Meta: model = Patch - exclude = ('commitfests', 'mailthreads', 'modified', ) + exclude = ('commitfests', 'mailthreads', 'modified', 'lastmail', ) widgets = { 'authors': AutoCompleteSelectMultipleWidget(lookup_class=UserLookup, position='top'), 'reviewers': AutoCompleteSelectMultipleWidget(lookup_class=UserLookup, position='top'), |