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 | |
parent | 1a8944adc9869fe825d9700e531267dbe1dc63e6 (diff) | |
download | Ishtar-62c5be516cc30abdb200cffbee4ba9047812bca7.tar.bz2 Ishtar-62c5be516cc30abdb200cffbee4ba9047812bca7.zip |
🏷️ Minor fix on labels
-rw-r--r-- | archaeological_finds/models_finds.py | 4 | ||||
-rw-r--r-- | ishtar_common/models_common.py | 2 |
2 files changed, 3 insertions, 3 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, diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index 334eb8b75..f537f617a 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -4598,7 +4598,7 @@ class CompleteIdentifierItem(models.Model, ImageContainerModel): complete_identifier = models.TextField( _("Complete identifier"), blank=True, default="" ) - custom_index = models.IntegerField("Custom index", blank=True, null=True) + custom_index = models.IntegerField(_("Custom index"), blank=True, null=True) qrcode = models.ImageField( upload_to=get_image_path, blank=True, null=True, max_length=255 ) |