From 8c2990da8abdf2019efbbed2b6ffa88806e8a535 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 13 Jan 2009 18:28:19 +0100 Subject: [PATCH] Add new fields to InfluenceForm It now also shows other_characters and other_contacts. --- influences/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influences/forms.py b/influences/forms.py index a5f414f..8ced120 100644 --- a/influences/forms.py +++ b/influences/forms.py @@ -67,7 +67,7 @@ def _get_influence_comment_form(allow_markup, allow_public, allow_private): class InfluenceForm(ContextModelForm): class Meta: model = Influence - fields = ('initiator', 'contact', 'summary', 'description') + fields = ('initiator', 'summary', 'other_characters', 'other_contacts', 'description') class CharacterForm(ContextModelForm): class Meta: -- 2.30.2