From d2218d1f1c336621cd8f6e75094da61bc1f67006 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Sun, 18 Aug 2013 18:20:15 +0200 Subject: [PATCH] Add lastmail to fields excluded from editing --- pgcommitfest/commitfest/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'), -- 2.39.5