diff --git a/pinaxcon/registrasion/management/commands/populate_inventory.py b/pinaxcon/registrasion/management/commands/populate_inventory.py index bf08a78592878703ef096591985af4865e92cc76..6f920f5060666397f9abeb96a2e2ed6b484117fa 100644 --- a/pinaxcon/registrasion/management/commands/populate_inventory.py +++ b/pinaxcon/registrasion/management/commands/populate_inventory.py @@ -11,7 +11,7 @@ from registrasion.models import conditions as cond from symposion import proposals class Command(BaseCommand): - help = 'Populates the inventory with the NBPy2018 inventory model' + help = 'Populates the inventory with the NBPy2019 inventory model' def add_arguments(self, parser): pass @@ -65,6 +65,7 @@ class Command(BaseCommand): limit_per_user=1, order=1, ) + ''' self.t_shirt = self.find_or_make( inv.Category, ("name",), @@ -77,6 +78,7 @@ class Command(BaseCommand): render_type=inv.Category.RENDER_TYPE_ITEM_QUANTITY, order=40, ) + ''' self.extras = self.find_or_make( inv.Category, ("name",), @@ -182,6 +184,7 @@ class Command(BaseCommand): ) # Shirts + ''' ShirtGroup = namedtuple("ShirtGroup", ("prefix", "sizes")) shirt_names = { "mens": ShirtGroup( @@ -215,6 +218,7 @@ class Command(BaseCommand): reservation_duration=hours(1), order=order, ) + ''' def populate_restrictions(self): @@ -361,7 +365,7 @@ class Command(BaseCommand): cond.TimeOrStockLimitDiscount, ("description", ), description="Early Bird", - end_time=datetime(year=2018, month=9, day=30), + end_time=datetime(year=2019, month=9, day=20), limit=100, # Across all users ) add_early_birds(early_bird) @@ -392,7 +396,7 @@ class Command(BaseCommand): self.ticket_sponsor, self.ticket_speaker, ]) - free_category(ticket_prolike_inclusions, self.t_shirt) + # free_category(ticket_prolike_inclusions, self.t_shirt) # Team & volunteer ticket inclusions ticket_staff_inclusions = self.find_or_make( @@ -405,6 +409,8 @@ class Command(BaseCommand): self.ticket_volunteer, ]) + ''' + # Team & volunteer t-shirts, regardless of ticket type staff_t_shirts = self.find_or_make( cond.GroupMemberDiscount, @@ -415,7 +421,9 @@ class Command(BaseCommand): self.group_team, self.group_volunteers, ]) - free_category(staff_t_shirts, self.t_shirt, quantity=2) + free_category(staff_t_shirts, self.t_shirt, quantity=2 + + ''' def find_or_make(self, model, search_keys, **k): ''' Either makes or finds an object of type _model_, with the given diff --git a/pinaxcon/templates/static_pages/attend/attend.html b/pinaxcon/templates/static_pages/attend/attend.html index 8ea507eaabb60b116f740e23e3ce980cd2f6f8b3..bbd08278af2ed80b7f412f4a79c08250678c1b40 100644 --- a/pinaxcon/templates/static_pages/attend/attend.html +++ b/pinaxcon/templates/static_pages/attend/attend.html @@ -27,25 +27,25 @@
Buy a Ticket

Which Ticket?

-

T-shirts are only available for tickets bought before October 9th.

+

Early Bird Discounts are available for the first 50 tickets sold tickets bought before September 20th.

Corporate $200

For company employees, and individuals who can claim the cost of attending the conference as a business expense or other tax deduction.

-

Includes a free t-shirt, and recognition of your affiliation on your conference badge and on the conference supporters list. Group discounts are available for organizations that buy 5 or more tickets.

+

Includes recognition of your affiliation on your conference badge and on the conference supporters list. Group discounts are available for organizations that buy 5 or more tickets.

Individual Supporter $100

For individuals who want to financially contribute to the success of the conference.

-

This ticket includes a free t-shirt, and recognition of your Free and Open Source Software, hobby, or nonprofit project on your conference badge.

+

This ticket includes recognition of your of your affiliation on your conference badge.

Unaffiliated Individual $50

For students, hobbyists, and unemployed/underemployed people who are coming to North Bay Python at their own expense.

-

The cheapest ticket we can offer. You can add a t-shirt for $30.

+

The cheapest ticket we can offer.

Special Tickets

@@ -88,12 +88,9 @@ Free Lunch No No No No - - T-Shirt - $30 each1 free
Extras $30 each1 free
Extras $30 each1 free
Extras $30 each Affiliation on your badge - No Personal projects only Yes Yes + No Yes Yes Yes Supporter recognition None For you For you and your company Top billing for you and your company or project @@ -120,15 +117,13 @@

Lunch

In order to keep ticket costs as low as possible, we don't cater lunch.

-

To make up for it, we’ve located our conference right in the middle of Historic Downtown Petaluma’s restaurant district. You can find everything from market delis and barbecue, through to Michelin-rated restaurants, all within 5 minutes walk. You’ll get a better lunch than we’d ever be able to cater, for much less. We'll have a locals' guide to Petaluma to help you find places to eat.

+

To make up for it, we’ve located our conference right in the middle of Historic Downtown Petaluma’s restaurant district. You can find everything from market delis and California barbecue, through to Michelin-recommended restaurants, all within 5 minutes walk. You’ll get a better lunch than we’d ever be able to cater, for much less. We'll have a locals' guide to Petaluma to help you find places to eat.

Morning Refreshments

We'll provide coffee, tea, hot chocolate, and some light snacks in the morning before proceedings kick off on both days.

T-Shirt

-

We’ll be designing a collectible North Bay Python t-shirt for you to pick up at the conference, and they’ll be available in a variety of sizes, cuts and colors. Each t-shirt costs $30, and for supporter, corporate, and sponsor ticket holders, you’ll get your first t-shirt free!

- -

T-shirts are available only for tickets purchased by Wednesday, October 9th.

+

We’ll be designing a collectible North Bay Python t-shirt for sale on-line by the time the conference comes around, and they’ll be available in a variety of sizes, cuts and colors.

Affiliation

@@ -149,7 +144,7 @@

Accessibility and Accommodations

Please check out our Accessibility and Accommodations page. Whether you have mobility, hearing, or vision issues, or a service animal, dietary restrictions, or something else you need to consider to navigate North Bay Python, we've got you covered. Please don't hesitate to reach out if you have questions we can help answer!

-

Financial Aid

-

If you don't have an employer paying to send you to North Bay Python, we encourage you to apply for financial aid. We can help defray the cost of travel, food, and lodging, as our goal is for attending North Bay Python to cost you about as much as staying home.

+

Opportunity grants

+

If you don't have an employer paying to send you to North Bay Python, we encourage you to apply for an opportunity grant. We can help defray the cost of travel, food, and lodging, as our goal is for attending North Bay Python to cost you about as much as staying home.

{% endblock %} diff --git a/pinaxcon/templates/static_pages/homepage.html b/pinaxcon/templates/static_pages/homepage.html index b08fc949fbc8a3c731469900f050bd80f9e5a063..66a0ce5eb81d2ba21216c79e87de377c16b2b446 100644 --- a/pinaxcon/templates/static_pages/homepage.html +++ b/pinaxcon/templates/static_pages/homepage.html @@ -43,10 +43,10 @@

- Ticket Sales open soon! - {%comment%} - Submit your proposal now! - {%endcomment%} + {% comment %} + Early Bird Tickets on sale now! + Session and Headline Speakers announced soon. + {% endcomment %}