diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-07 12:46:34 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-07 12:46:34 +0200 |
commit | ebe47cf4d963caf5f765509eec7b6e80a42a084b (patch) | |
tree | e739aa2aa9e518ff453cfb40d64a6a8126b131bf /archaeological_context_records/models.py | |
parent | 23d974f2165926db14f69307948daac5e80cc1a1 (diff) | |
download | Ishtar-ebe47cf4d963caf5f765509eec7b6e80a42a084b.tar.bz2 Ishtar-ebe47cf4d963caf5f765509eec7b6e80a42a084b.zip |
Display a message to warn about related items and history - many improvment on sheet layout
Diffstat (limited to 'archaeological_context_records/models.py')
-rw-r--r-- | archaeological_context_records/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 637c386f0..a98f7792a 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -131,7 +131,7 @@ class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): related_name='context_record') label = models.CharField(_(u"ID"), max_length=200) description = models.TextField(_(u"Description"), blank=True, null=True) - comment = models.TextField(_(u"Comment"), blank=True, null=True) + comment = models.TextField(_(u"General comment"), blank=True, null=True) opening_date = models.DateField(_(u"Date d'ouverture"), blank=True, null=True) closing_date = models.DateField(_(u"End date"), blank=True, null=True) |