如何使用外键关系在一个视图中保存两个表单?

时间:2017-05-12 04:05:36

标签: django python-2.7 django-models django-forms django-views

我有以下带有外键关系的模型。

class UserProfile(models.Model):

     profile_id = models.CharField(
          ('Profile id'), max_length=30, default='', blank=True)
    first_name = models.CharField(
        ('first name'), max_length=30, default='', blank=True)
    last_name = models.CharField(
    ('last name'), default='', max_length=30, blank=True)

配置文件图像模型与UserProfile模型具有外键关系:

class UserProfileImage(models.Model):
    userprofile = models.ForeignKey(UserProfile)
    image = models.ImageField(upload_to='profile_pic/images',blank=True,null=True)

    def __unicode__(self):
        return self.userprofile.profile_id

我想在一个视图中保存这两个表单并进行编辑也应该传递两个表单实例。如何在一个视图中保存这两个表单?

0 个答案:

没有答案