Si la catégorie est défaut, on autorise aussi la modification des catégories à la création

This commit is contained in:
Jean-Marie Favreau 2024-10-20 06:13:42 +02:00
parent 27d44f6918
commit 5a76fc8aea

View File

@ -718,7 +718,7 @@ class Event(models.Model):
self.exact_location = p
break
# try to detect category
if not self.category:
if not self.category or self.category.name == Category.default_name:
CategorisationRule.apply_rules(self)
def save(self, *args, **kwargs):