diff options
author | Magnus Hagander | 2013-08-18 17:11:06 +0000 |
---|---|---|
committer | Magnus Hagander | 2013-08-18 17:11:06 +0000 |
commit | 3fd84633c36e06958aef6f628c3e68422b973515 (patch) | |
tree | 3a4b1f79f582cfb560c300122fbd905d193de9e1 /pgcommitfest/commitfest/views.py | |
parent | d2218d1f1c336621cd8f6e75094da61bc1f67006 (diff) |
Fix form layouts by not overriding things that shouldn't be
Diffstat (limited to 'pgcommitfest/commitfest/views.py')
-rw-r--r-- | pgcommitfest/commitfest/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/commitfest/views.py b/pgcommitfest/commitfest/views.py index 82ff8f1..6fc23a1 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -232,6 +232,7 @@ def comment(request, cfid, patchid, what): 'cf': cf, 'form': form, 'patch': patch, + 'extraformclass': 'patchcommentform', 'breadcrumbs': [{'title': cf.name, 'href': '/%s/' % cf.pk}, {'title': 'View patch', 'href': '/%s/%s/' % (cf.pk, patch.pk)}], 'title': "Add %s" % what, |