diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-12-02 17:45:58 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:22 +0100 |
commit | 3e80e0a84ede2ea2362d3602c5e7f984e8863fbb (patch) | |
tree | ee022cb560a4b0e51935fedc2edbd0769ee79012 /archaeological_files/models.py | |
parent | a4e298339d8305eb2611c04543131954f8105ea9 (diff) | |
download | Ishtar-3e80e0a84ede2ea2362d3602c5e7f984e8863fbb.tar.bz2 Ishtar-3e80e0a84ede2ea2362d3602c5e7f984e8863fbb.zip |
Docs: autogen value documentation
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r-- | archaeological_files/models.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/archaeological_files/models.py b/archaeological_files/models.py index 427d673d3..23aea5b39 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -361,8 +361,10 @@ class File(ClosedItem, DocumentItem, BaseHistorizedItem, CompleteIdentifierItem, Document, related_name="files", verbose_name=_(u"Documents"), blank=True) - cached_label = models.TextField(_(u"Cached name"), null=True, blank=True, - db_index=True) + cached_label = models.TextField( + _("Cached name"), null=True, blank=True, db_index=True, + help_text=_("Generated automatically - do not edit"), + ) imported_line = models.TextField(_(u"Imported line"), null=True, blank=True) history = HistoricalRecords(bases=[HistoryModel]) |