Skip to content

Commit fad5f2b

Browse files
committedDec 14, 2023
filtering by current_year where necessary
1 parent 1296660 commit fad5f2b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎sponsors/admin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ class TargetableEmailBenefitsFilter(admin.SimpleListFilter):
258258
@cached_property
259259
def benefits(self):
260260
qs = EmailTargetableConfiguration.objects.all().values_list("benefit_id", flat=True)
261-
benefits = SponsorshipBenefit.objects.filter(id__in=Subquery(qs))
261+
benefits = SponsorshipBenefit.objects.filter(id__in=Subquery(qs), year=SponsorshipCurrentYear.get_year())
262262
return {str(b.id): b for b in benefits}
263263

264264
def lookups(self, request, model_admin):

‎sponsors/forms.py

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ def get_package(self):
127127
if not pkg_benefits and standalone: # standalone only
128128
pkg, _ = SponsorshipPackage.objects.get_or_create(
129129
slug="standalone-only",
130+
year=SponsorshipCurrentYear.get_year(),
130131
defaults={"name": "Standalone Only", "sponsorship_amount": 0},
131132
)
132133

0 commit comments

Comments
 (0)
Please sign in to comment.