0

フォームに表を表示しようとしてきましたが、できませんでした。データベースをクローンして作成し、github でプロジェクトを実行してください。ここに貼り付けるにはコードが多すぎます。

github: https://github.com/mattisbmx/django-multipleChoiceField

モデル:

from django.db import models
from multiselect.fields import ManyToManyField

class Choice(models.Model):
    choice = models.CharField(max_length=15)

    def __unicode__(self):
        return self.choice

class SampleModel(models.Model):
    name = models.CharField(max_length=15)
    funciones = ManyToManyField(Choice)
    passwd = models.TextField()
    def __unicode__(self):
        return unicode(self.pk)

意見:

def index(request):
    data = {'form': forms.SelectForm()}

    return render_to_response("multiselect/index.html", data,
                          context_instance=RequestContext(request

形:

class SelectForm(forms.Form):
    data = (('1', 'One'), ('2', 'Two'), ('3', 'Three'), ('4', 'Four')) #<--I think here I load the data model
    choices = MultipleChoiceField(choices=data)

ありがとう

4

1 に答える 1

4

使用できますModelMultipleChoiceField

class SelectForm(forms.Form):
    choices = forms.ModelMultipleChoiceField(queryset=Choice.objects.all()) #Replace the queryset with the queryset of your choice.

デフォルトのウィジェットを変更したい場合

widget=CheckboxSelectMultiple()またはどちらでも使用できます。

于 2013-05-21T02:06:40.613 に答える