diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-23 19:48:56 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-23 19:48:56 +0100 |
| commit | f26ac58c4e2b32fb4f9257f29d3a7bdf38a52dc4 (patch) | |
| tree | 620cb8ec82e5b7540061bc0b376b0cdd123c0259 /archaeological_finds/models_treatments.py | |
| parent | de49a13ee48b4917024b9cc787e0a2de510ec5c7 (diff) | |
| download | Ishtar-f26ac58c4e2b32fb4f9257f29d3a7bdf38a52dc4.tar.bz2 Ishtar-f26ac58c4e2b32fb4f9257f29d3a7bdf38a52dc4.zip | |
Better display of closing date for treatment and file treatments (refs #3388)
Diffstat (limited to 'archaeological_finds/models_treatments.py')
| -rw-r--r-- | archaeological_finds/models_treatments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py index 76b9a2d86..7f2e4e348 100644 --- a/archaeological_finds/models_treatments.py +++ b/archaeological_finds/models_treatments.py @@ -118,7 +118,7 @@ class Treatment(BaseHistorizedItem, ImageModel, OwnPerms): description = models.TextField(_(u"Description"), blank=True, null=True) goal = models.TextField(_(u"Goal"), blank=True, null=True) start_date = models.DateField(_(u"Start date"), blank=True, null=True) - end_date = models.DateField(_(u"End date"), blank=True, null=True) + end_date = models.DateField(_(u"Closing date"), blank=True, null=True) container = models.ForeignKey(Container, verbose_name=_(u"Container"), blank=True, null=True) target_is_basket = models.BooleanField(_(u"Target a basket"), default=False) |
