diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-10 18:36:48 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-10 18:36:48 +0200 |
commit | e6400e623dff8749bb530349091824ffe1217241 (patch) | |
tree | be8d4564e68a0bf65a2b4f0136621d67f2acf62a /ishtar/ishtar_base/models.py | |
parent | 2d307fd28838a7298d2a552f056d10f548f16df7 (diff) | |
download | Ishtar-e6400e623dff8749bb530349091824ffe1217241.tar.bz2 Ishtar-e6400e623dff8749bb530349091824ffe1217241.zip |
Disambiguation of closing date and end of excavation work (closes #526)
Diffstat (limited to 'ishtar/ishtar_base/models.py')
-rw-r--r-- | ishtar/ishtar_base/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar/ishtar_base/models.py b/ishtar/ishtar_base/models.py index 4c4cdfc2e..8c4c91dae 100644 --- a/ishtar/ishtar_base/models.py +++ b/ishtar/ishtar_base/models.py @@ -629,6 +629,8 @@ class Operation(BaseHistorizedItem, OwnPerms): TABLE_COLS = ['operation_code', 'year', 'operation_type', 'remains', 'towns', 'associated_file', 'start_date'] start_date = models.DateField(_(u"Start date"), null=True, blank=True) + excavation_end_date = models.DateField(_(u"Excavation end date"), null=True, + blank=True) end_date = models.DateField(_(u"Closing date"), null=True, blank=True) in_charge = models.ForeignKey('Person', related_name='+', null=True, blank=True, verbose_name=_(u"In charge")) |