diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-15 19:01:43 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-15 19:32:59 +0200 |
commit | 0a29319e2d7d8a3eb190b3596bb9e7942dc28d3e (patch) | |
tree | d0691a73cf7cce5a490de8a9b479f6809a810f50 /archaeological_finds/models_finds.py | |
parent | 418813127dead57ac00d749c1ff618273e7fb78f (diff) | |
download | Ishtar-0a29319e2d7d8a3eb190b3596bb9e7942dc28d3e.tar.bz2 Ishtar-0a29319e2d7d8a3eb190b3596bb9e7942dc28d3e.zip |
♻️ django 3.2 - new version of libraries: fix errors and deprecation warnings
Diffstat (limited to 'archaeological_finds/models_finds.py')
-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 6104587c2..7f345efd8 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -2237,7 +2237,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 ) |