diff --git a/backend/clubs/views.py b/backend/clubs/views.py index ae6313498..14814831c 100644 --- a/backend/clubs/views.py +++ b/backend/clubs/views.py @@ -6540,6 +6540,11 @@ def edit_clubs(self, *args, **kwargs): end = cycle.end_date release = cycle.release_date + # Remove cycle for club applications from non-included clubs + ClubApplication.objects.filter(application_cycle=cycle).exclude( + club__code__in=club_codes + ).update(application_cycle=None) + # Some apps need to be created - use the default Wharton Template prompt_one = ( "Tell us about a time you took " "initiative or demonstrated leadership"