And "discount" to EB discount descriptions

This commit is contained in:
James Polley 2017-10-01 14:50:53 +11:00
parent 3f4050d96f
commit 38a99f7ae5

View file

@ -673,7 +673,7 @@ class Command(BaseCommand):
early_bird_hobbyist_discount = self.find_or_make(
cond.TimeOrStockLimitDiscount,
("description", ),
description="Early Bird Hobbyist",
description="Early Bird Discount - Hobbyist",
end_time=datetime(year=2017, month=11, day=1),
limit=150, # Across all users
)
@ -689,9 +689,9 @@ class Command(BaseCommand):
early_bird = self.find_or_make(
cond.TimeOrStockLimitDiscount,
("description", ),
description="Early Bird",
description="Early Bird Discount - Professional",
end_time=datetime(year=2017, month=11, day=1),
limit=200, # Across professionals and hobbyists
limit=200, # Across professionals and fairy sponsors
)
add_early_birds(early_bird)