diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-09 09:12:11 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-09 09:12:11 +0200 |
commit | a854fb0090f0deb674e83011c45a2e6c4ff0caee (patch) | |
tree | 0e943c82ea96146ae0987314abaa3e8f487c8c23 /archaeological_context_records/models.py | |
parent | 8801ab7b7e655d8b831e535381eeea8adc091989 (diff) | |
parent | 2ad59aa6f6f4506d86c205f78a99ed5e47992156 (diff) | |
download | Ishtar-a854fb0090f0deb674e83011c45a2e6c4ff0caee.tar.bz2 Ishtar-a854fb0090f0deb674e83011c45a2e6c4ff0caee.zip |
Merge branch 'master' into v0.9
Diffstat (limited to 'archaeological_context_records/models.py')
-rw-r--r-- | archaeological_context_records/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index a5f02133e..f5df4e5ec 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -233,9 +233,9 @@ class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms, label = models.CharField(_(u"ID"), max_length=200) description = models.TextField(_(u"Description"), blank=True, null=True) comment = models.TextField(_(u"General comment"), blank=True, null=True) - opening_date = models.DateField(_(u"Date d'ouverture"), + opening_date = models.DateField(_(u"Opening date"), blank=True, null=True) - closing_date = models.DateField(_(u"End date"), blank=True, null=True) + closing_date = models.DateField(_(u"Closing date"), blank=True, null=True) length = models.FloatField(_(u"Length (m)"), blank=True, null=True) width = models.FloatField(_(u"Width (m)"), blank=True, null=True) thickness = models.FloatField(_(u"Thickness (m)"), blank=True, |