diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-04-23 16:41:30 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-04-23 16:41:30 +0200 |
commit | 62c5be516cc30abdb200cffbee4ba9047812bca7 (patch) | |
tree | 3d77a3f3019b408458fdddc53be04cdda28d6909 /archaeological_finds | |
parent | 1a8944adc9869fe825d9700e531267dbe1dc63e6 (diff) | |
download | Ishtar-62c5be516cc30abdb200cffbee4ba9047812bca7.tar.bz2 Ishtar-62c5be516cc30abdb200cffbee4ba9047812bca7.zip |
🏷️ Minor fix on labels
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/models_finds.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 4ec0742dd..99d01cc3b 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -600,14 +600,14 @@ class BaseFind( # gis line = models.LineStringField(_("Line"), blank=True, null=True) cache_short_id = models.TextField( - _("Short ID"), + _("Short ID - cached"), blank=True, default="", db_index=True, help_text=_("Cached value - do not edit"), ) cache_complete_id = models.TextField( - _("Complete ID"), + _("Complete ID - cached"), blank=True, default="", db_index=True, |