Add type to the CharacterForm.
[matthijs/projects/xerxes.git] / influences / forms.py
index a5f414fcf3a5b4f0392a36f9ff0b3b771a10afed..fc7d9497e64410fcbea3c9db8c457c047cc7c870 100644 (file)
@@ -67,10 +67,10 @@ 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:
         model = Character
-        fields = ('name')
+        fields = ('name', 'type')