X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fxerxes.git;a=blobdiff_plain;f=influences%2Fforms.py;fp=influences%2Fforms.py;h=56e31ca471334d36ed8e446be6ed9536465e48c9;hp=fc7d9497e64410fcbea3c9db8c457c047cc7c870;hb=eb845e4ffb2eb95d9f2e4375f921fa52e10e0fb7;hpb=f5139459039388e2925d6eec49f6ce883ea1fffa diff --git a/influences/forms.py b/influences/forms.py index fc7d949..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')