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 /ishtar_common | |
parent | 1a8944adc9869fe825d9700e531267dbe1dc63e6 (diff) | |
download | Ishtar-62c5be516cc30abdb200cffbee4ba9047812bca7.tar.bz2 Ishtar-62c5be516cc30abdb200cffbee4ba9047812bca7.zip |
🏷️ Minor fix on labels
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/models_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) |