diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-31 11:51:53 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-31 11:51:53 +0200 |
commit | 9a9300532592b575a0914e009840c2c4c11f28c0 (patch) | |
tree | 9c710dd7acf9e31b35b3fed85d207fdca532413e /archaeological_context_records/models.py | |
parent | b2e1c602627102d2c63616d98305941c773b24fa (diff) | |
download | Ishtar-9a9300532592b575a0914e009840c2c4c11f28c0.tar.bz2 Ishtar-9a9300532592b575a0914e009840c2c4c11f28c0.zip |
Context record form/sheet: add opening/closing dates
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, |