diff options
Diffstat (limited to 'archaeological_warehouse/models.py')
| -rw-r--r-- | archaeological_warehouse/models.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py index 156755e18..1ab28504e 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -157,7 +157,7 @@ class Container(LightHistorizedItem):      container_type = models.ForeignKey(ContainerType,                                         verbose_name=_("Container type"))      reference = models.CharField(_(u"Container ref."), max_length=40) -    comment = models.TextField(_(u"Comment")) +    comment = models.TextField(_(u"Comment"), null=True, blank=True)      cached_label = models.CharField(_(u"Cached name"), max_length=500,                                      null=True, blank=True)      cached_location = models.CharField(_(u"Cached location"), max_length=500,  | 
