diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-24 18:04:01 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-07-21 15:07:41 +0200 |
commit | 4f8fe31ad39bf0b82842690aeedf20a50d8812df (patch) | |
tree | 750a9c700bf58b358e600c430f23934a1bbf6332 /archaeological_finds | |
parent | 7aa1ab1b09bcafb2f806e389f4b7090332004e55 (diff) | |
download | Ishtar-4f8fe31ad39bf0b82842690aeedf20a50d8812df.tar.bz2 Ishtar-4f8fe31ad39bf0b82842690aeedf20a50d8812df.zip |
♻️ django 3.2 - new version of libraries: fix errors and deprecation warnings
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/models_finds.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index bd0c42619..02ed055ec 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -2169,7 +2169,7 @@ class Find( _("Reference container - first full location"), default="", blank=True, help_text=_("Updated as long as no packaging is attached") ) - is_complete = models.NullBooleanField(_("Is complete?"), blank=True, null=True) + is_complete = models.BooleanField(_("Is complete?"), blank=True, null=True) object_types = models.ManyToManyField( ObjectType, verbose_name=_("Object types"), related_name="find", blank=True ) |