diff options
author | Magnus Hagander | 2019-02-28 11:24:23 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-02-28 11:24:23 +0000 |
commit | 20c06a4c81b189b0e2c66c884c14d7ac7852da50 (patch) | |
tree | 65def86f775b8bd87414cfef6bfd68f324144596 /pgcommitfest/commitfest/forms.py | |
parent | 74103b854d31e714f2642b82760d057c7e99aa43 (diff) |
Don't include "target version" on new patch form
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 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: |