upstream/2025.9.0.1 #9

Merged
simon merged 134 commits from upstream/2025.9.0.1 into master 2025-11-09 19:16:54 +00:00
Showing only changes of commit adca856cdb - Show all commits
+2 -6
View File
@@ -1639,20 +1639,16 @@ class SubEvent(EventMixin, LoggedModel):
@cached_property
def item_overrides(self):
from .items import SubEventItem
return {
si.item_id: si
for si in SubEventItem.objects.filter(subevent=self)
for si in self.subeventitem_set.all()
}
@cached_property
def var_overrides(self):
from .items import SubEventItemVariation
return {
si.variation_id: si
for si in SubEventItemVariation.objects.filter(subevent=self)
for si in self.subeventitemvariation_set.all()
}
@property