0

関連オブジェクトをフォームセット内の対応するフォームに関連付けたい。これまでのところ、私は持っています:

ModelFormSet = modelformset_factory(Notification, form=NotificationsForm, extra=5)

    generic_type = ContentType.objects.get_for_model(Department)
    queryset = Notification.objects.filter(notificationrelation__content_type_id=generic_type.id)
    formset = ModelFormSet(queryset=queryset)

    for notification in formset.get_queryset():
        relation = NotificationRelation.objects.get(notification=notification)
        department = Department.objects.get(pk=relation.object_id)

私のモデルは次のようになります。

class Notification(models.Model):
    name = models.CharField('Notification Name', max_length=128)

class Department(models.Model):
    name = models.CharField('Department Name', max_length=128)

class NotificationRelation(models.Model):
    content_type = models.ForeignKey(ContentType)
    object_id = models.PositiveIntegerField(null=True, blank=True)
    content_object = generic.GenericForeignKey('content_type', 'object_id')
    notification = models.ForeignKey(Notification)

最終行の部門をフォームセットの関連する通知に関連付けたいと思います。

何かのようなもの:

for form in formset:
     if something:
         form.department = department

これを達成する方法を知っている人はいますか?

4

1 に答える 1