summaryrefslogtreecommitdiff
path: root/archaeological_finds
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-03-24 18:04:01 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-06-13 18:01:30 +0200
commit1c148cc8cdaccfbd4e6e506aa2fd35e53920ddf0 (patch)
tree8a3bfb70860c48995c0e55af2eed9e46aa2969e7 /archaeological_finds
parent98ec1df553ccf6763f60f230c0db083526a508ba (diff)
downloadIshtar-1c148cc8cdaccfbd4e6e506aa2fd35e53920ddf0.tar.bz2
Ishtar-1c148cc8cdaccfbd4e6e506aa2fd35e53920ddf0.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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py
index 83069bafb..902444a4a 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
)