Merge pull request '# Bugfix' (#425) from 424_Archived_codes_selectable into master

Reviewed-on: #425
This commit is contained in:
mpeltriaux 2024-08-06 14:28:16 +02:00
commit d4d39689cc

View File

@ -75,7 +75,8 @@ class KonovaCode(models.Model):
return self
children = KonovaCode.objects.filter(
parent=self
parent=self,
is_archived=False,
).order_by(
order_by
)