X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=influences%2Fforms.py;h=56e31ca471334d36ed8e446be6ed9536465e48c9;hb=3ad5726e7dd331376eb4268b9dcb1b29cb1f0b7b;hp=8ced120dcd8d1e854832cf7c43514f7ba4fe5270;hpb=8c2990da8abdf2019efbbed2b6ffa88806e8a535;p=matthijs%2Fprojects%2Fxerxes.git diff --git a/influences/forms.py b/influences/forms.py index 8ced120..56e31ca 100644 --- a/influences/forms.py +++ b/influences/forms.py @@ -1,7 +1,9 @@ from django.forms.fields import CharField from django.forms.widgets import Textarea +from django.forms.models import ModelMultipleChoiceField from threadedcomments.forms import ThreadedCommentForm from xerxes.tools.forms import ContextModelForm +from xerxes.tools.widgets import DropDownMultiple from models import Influence, Character # @@ -65,6 +67,7 @@ def _get_influence_comment_form(allow_markup, allow_public, allow_private): raise Exception("Unsupported configuration") class InfluenceForm(ContextModelForm): + other_characters = ModelMultipleChoiceField(queryset=Character.objects.all(), widget=DropDownMultiple) class Meta: model = Influence fields = ('initiator', 'summary', 'other_characters', 'other_contacts', 'description') @@ -72,5 +75,5 @@ class InfluenceForm(ContextModelForm): class CharacterForm(ContextModelForm): class Meta: model = Character - fields = ('name') + fields = ('name', 'type')