filter on camp too, doh!

This commit is contained in:
Thomas Steen Rasmussen 2020-08-04 22:15:01 +02:00
parent 09cf137aac
commit e33711f63a
1 changed files with 3 additions and 1 deletions

View File

@ -920,7 +920,9 @@ class EventScheduleView(CampViewMixin, ContentTeamPermissionMixin, FormView):
def setup(self, *args, **kwargs):
super().setup(*args, **kwargs)
self.event = get_object_or_404(Event, slug=kwargs["slug"])
self.event = get_object_or_404(
Event, track__camp=self.camp, slug=kwargs["slug"]
)
def get_form(self, *args, **kwargs):
form = super().get_form(*args, **kwargs)