diff options
-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 ) |