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 7f7fbeb91..9ff615332 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -123,7 +123,7 @@ class ContainerType(GeneralType):      length = models.IntegerField(_(u"Length (mm)"), blank=True, null=True)      width = models.IntegerField(_(u"Width (mm)"), blank=True, null=True)      height = models.IntegerField(_(u"Height (mm)"), blank=True, null=True) -    volume = models.IntegerField(_(u"Volume (l)"), blank=True, null=True) +    volume = models.FloatField(_(u"Volume (l)"), blank=True, null=True)      reference = models.CharField(_(u"Ref."), max_length=30)      class Meta: | 
