From a6ecaad866d8b3bfb0acc9da429aab6b01dbd667 Mon Sep 17 00:00:00 2001 From: Clinton Roy Date: Sun, 22 Sep 2019 14:07:11 +1000 Subject: [PATCH] fairy -> contributor --- .../management/commands/populate_inventory.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pinaxcon/registrasion/management/commands/populate_inventory.py b/pinaxcon/registrasion/management/commands/populate_inventory.py index 8428afdd..cd5fd838 100644 --- a/pinaxcon/registrasion/management/commands/populate_inventory.py +++ b/pinaxcon/registrasion/management/commands/populate_inventory.py @@ -166,11 +166,11 @@ class Command(BaseCommand): # Tickets - self.ticket_fairy = self.find_or_make( + self.ticket_contributor = self.find_or_make( inv.Product, ("name", "category",), category=self.ticket, - name="Fairy Penguin Sponsor", + name="Contributor", price=Decimal("1999.00"), reservation_duration=hours(24), order=1, @@ -450,7 +450,7 @@ class Command(BaseCommand): ) hide_all_tickets.group.set([self.group_prepurchase]) hide_all_tickets.products.set([ - self.ticket_fairy, + self.ticket_contributor, self.ticket_professional, self.ticket_hobbyist, self.ticket_student, @@ -465,7 +465,7 @@ class Command(BaseCommand): limit=600, ) public_ticket_cap.products.set([ - self.ticket_fairy, + self.ticket_contributor, self.ticket_professional, self.ticket_hobbyist, self.ticket_student, @@ -484,7 +484,7 @@ class Command(BaseCommand): ]) public_ticket_cap.products.set([ - self.ticket_fairy, + self.ticket_contributor, self.ticket_professional, self.ticket_hobbyist, self.ticket_student, @@ -626,7 +626,7 @@ class Command(BaseCommand): ) pdns_by_ticket.enabling_products.set([ self.ticket_professional, - self.ticket_fairy, + self.ticket_contributor, self.ticket_media, self.ticket_sponsor, ]) @@ -693,7 +693,7 @@ class Command(BaseCommand): cond.DiscountForProduct, ("discount", "product"), discount=discount, - product=self.ticket_fairy, + product=self.ticket_contributor, price=Decimal("150.00"), quantity=1, # Per user ) @@ -773,7 +773,7 @@ class Command(BaseCommand): description="Complimentary for ticket holder (Professional-level)", ) ticket_prolike_inclusions.enabling_products.set([ - self.ticket_fairy, + self.ticket_contributor, self.ticket_professional, self.ticket_media, self.ticket_sponsor,