私は次のモデルを持っています:
class Profile(models.Model):
verified = models.BooleanField(default=False)
def primary_phone(self):
return self.phone_set.get(primary=True)
class Phone(models.Model):
profile = models.ForeignKey(Profile)
type = models.CharField(choices=PHONE_TYPES, max_length=16)
number = models.CharField(max_length=32)
primary = models.BooleanField(default=False)
def save(self, force_insert=False, force_update=False, using=None):
if self.primary:
# clear the primary attribute of other phones of the related profile
self.profile.phone_set.update(primary=False)
self.save(force_insert, force_update, using)
Phone
ModelForm をフォームセットとして使用しています。私がやろうとしているのはPhone.primary
、の各インスタンスの横にラジオ ボタンとして表示することですPhone
。RadioSelect
ウィジェットとしてプライマリにすると:
class PhoneForm(ModelForm):
primary = forms.BooleanField(widget=forms.RadioSelect( choices=((0, 'False'), (1, 'True')) ))
class Meta:
from accounts.models import Phone
model = Phone
fields = ('primary', 'type', 'number', )
2 つのラジオ ボタンが表示され、各インスタンスの横にグループ化されます。primary=True
代わりに、各インスタンスの横にラジオ ボタンを 1 つだけ表示し (そのインスタンスに設定する必要があります)、ラジオ ボタンのすべてのセットをグループ化して、そのうちの 1 つだけを選択できるようにする方法を探しています。
私はまた、これを行うためのクリーンな方法を探しています.上記のほとんどを頭の中で手動で行うことができます.
誰でもアイデアを得ましたか?