不允许空值 - 即使我在模型中指定null = True

时间:2013-08-13 15:54:56

标签: python django django-cms

我不明白:在我的django-cms hook-app中,我希望有机会上传图片,但我不是必须的。

在models.py

   image1 = FilerImageField(related_name="image1", null=True, blank=True) 

在我的html模板中

  % if instance.image1 and instance.pic_label1 %}

    <a class="fancybox" rel="gallery2" href="{% thumbnail instance.image1 680x453 crop='smart' %}" title="{{ instance.pic_label1 }}"><img src="{% thumbnail instance.image1 148x222  crop='smart' %}" class="images_events"/ ></a>
        <p>{{ instance.pic_label1 }}</p>

 {% endif %}

但是当我运行所有内容时会发生此错误:

 Cannot assign None: "ImageText.image1" does not allow null values.

0 个答案:

没有答案