diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-15 19:16:43 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-15 19:17:20 +0200 |
commit | 399e82dfc7680541820a59951e3f8689198314bc (patch) | |
tree | 5ae38e8786e61c456eb432d467147a63f21bad2e /archaeological_context_records/models.py | |
parent | f95a754c2d6b3f68e9b493c664f63f2f9246fbd7 (diff) | |
download | Ishtar-399e82dfc7680541820a59951e3f8689198314bc.tar.bz2 Ishtar-399e82dfc7680541820a59951e3f8689198314bc.zip |
Context records: add comments on dating (refs #3149)
Diffstat (limited to 'archaeological_context_records/models.py')
-rw-r--r-- | archaeological_context_records/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 1378463a5..89e771eba 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -143,6 +143,8 @@ class ContextRecord(BaseHistorizedItem, OwnPerms, ShortMenuItem): help_text=_(u"A short description of the location of the context " u"record")) datings = models.ManyToManyField(Dating) + datings_comment = models.TextField(_(u"Comment on datings"), blank=True, + null=True) unit = models.ForeignKey(Unit, verbose_name=_(u"Unit"), related_name='+', blank=True, null=True) has_furniture = models.NullBooleanField(_(u"Has furniture?"), blank=True, |