From 20c06a4c81b189b0e2c66c884c14d7ac7852da50 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 28 Feb 2019 12:24:23 +0100 Subject: [PATCH] Don't include "target version" on new patch form --- 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 a3e5807..4d0430f 100644 --- a/pgcommitfest/commitfest/forms.py +++ b/pgcommitfest/commitfest/forms.py @@ -61,7 +61,7 @@ class NewPatchForm(forms.ModelForm): class Meta: model = Patch - exclude = ('commitfests', 'mailthreads', 'modified', 'authors', 'reviewers', 'committer', 'wikilink', 'gitlink', 'lastmail', 'subscribers', ) + fields = ('name', 'topic', ) def clean_threadmsgid(self): try: -- 2.39.5