File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ class TargetableEmailBenefitsFilter(admin.SimpleListFilter):
258
258
@cached_property
259
259
def benefits (self ):
260
260
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 () )
262
262
return {str (b .id ): b for b in benefits }
263
263
264
264
def lookups (self , request , model_admin ):
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ def get_package(self):
127
127
if not pkg_benefits and standalone : # standalone only
128
128
pkg , _ = SponsorshipPackage .objects .get_or_create (
129
129
slug = "standalone-only" ,
130
+ year = SponsorshipCurrentYear .get_year (),
130
131
defaults = {"name" : "Standalone Only" , "sponsorship_amount" : 0 },
131
132
)
132
133
You can’t perform that action at this time.
0 commit comments