From 257af285ae405338c5b233ee0d95510e39169cb7 2018-12-06 15:18:18 From: Brett Smith Date: 2018-12-06 15:18:18 Subject: [PATCH] sponsors: Add "Become a Sponsor" page. --- diff --git a/pinaxcon/templates/static_pages/sponsors/become_a_sponsor.html b/pinaxcon/templates/static_pages/sponsors/become_a_sponsor.html index d8b8ed3a5b9616fd4b18f47ee50452b0e7eade13..034e29916e9176e1cb475947037ffd173ce0d2be 100644 --- a/pinaxcon/templates/static_pages/sponsors/become_a_sponsor.html +++ b/pinaxcon/templates/static_pages/sponsors/become_a_sponsor.html @@ -1,6 +1,7 @@ {% extends "page_with_title_and_lede.html" %} {% load i18n %} +{% load markdown_deux_tags %} {% block head_title %}Become a Sponsor{% endblock %} @@ -8,46 +9,10 @@ {% block body_class %}sponsors{% endblock %} -{% block lede %} - -Your generosity builds careers, brings students together with expert developers, and promotes free and open source software. How can we help you? Explore our sponsor prospectus. - -{% endblock %} - {% block content %} + {% markdown %} -

Help cultivate the Python developer community.

- -
- Sponsor Prospectus -
- -

Our base costs—including things like venue, printing, web hosting, and more—are all funded through sponsorship. In return, we offer complimentary corporate-level tickets, an opportunity to talk about your company on our main stage, lobby space to display free-standing banners, and as much praise as we can deliver in front of 300 grateful Pythonistas.

- -

Below is an overview of sponsorship levels. Please email us for more information.

- -

Package Sponsorship starts at $2000

- -

Package sponsorships are the widest-reaching and best value sponsorships we offer at North Bay Python. When our attendees arrive at the venue, they'll see your signage as they walk through the door. As they're sitting in the theatre, they'll see your logo on the backdrop behind the speakers, and on-screen on between talks. You'll also get the chance to present a short talk about your organization between two of our invited presentations.

- -

À la Carte Sponsorship starts at $3000

- -

If you're looking for something a bit more exclusive, North Bay Python's À la Carte sponsorships allow you to promote your organization as part of an important offering during the conference, including lanyards, catering, or video branding. We'll also recognize you as a Silver package sponsor, with the opportunity for discounted upgrades to higher package tiers.

- -

In-Kind Partnerships

- -

Sponsorship can also be in the form of in-kind donations of goods and services essential to organizing the conference, or in assisting speakers to attend the conference. If you can make a substantial in-kind donation, we will recognize you as a package-level sponsor of equivalent value.

- -

Community Partnerships

- -

Community groups, such as Python Meetups and PyLadies groups, are the lifeblood of the Python community, and we need your help to put on the best conference we can. If you can help us with one of the following, we'll recognize you as a community partner, which comes with all of the benefits of a Silver sponsorship.

- - + {% include "static_pages/sponsors/become_a_sponsor.md" %} + {% endmarkdown %} {% endblock %} diff --git a/pinaxcon/templates/static_pages/sponsors/become_a_sponsor.md b/pinaxcon/templates/static_pages/sponsors/become_a_sponsor.md new file mode 100644 index 0000000000000000000000000000000000000000..398638e422676e92974dd4c05954b1ba041add54 --- /dev/null +++ b/pinaxcon/templates/static_pages/sponsors/become_a_sponsor.md @@ -0,0 +1,26 @@ +When: 10:00am – 6:00pm, February 4th 2019 (aka the day after FOSDEM) +Where: A short walk from Gare Central in Brussels, Belgium +Expected attendance: 200 dedicated free and open source software licensing professionals and enthusiasts + +This will be the very first annual International Copyleft Conference. Participants from throughout the copyleft world — developers, strategists, enforcement organizations, scholars and critics — will be welcomed for an in-depth, high bandwidth, and expert-level discussion about the day-to-day details of using copyleft licensing, obstacles facing copyleft and the future of copyleft as a strategy to advance and defend software freedom for users and developers around the world. + +Who’s organizing this? Software Freedom Conservancy is a not-for-profit charity that helps promote, improve, develop, and defend Free, Libre, and Open Source Software (FLOSS) projects. Conservancy provides a non-profit home and infrastructure for FLOSS projects. Conservancy is also the only organization currently working on enforcement of the GPL, the world’s most popular copyleft license. + +This event will provide a friendly and safe place for discussion of all aspects of copyleft, including as a key strategy for defending software freedom! Your sponsorship will help make this a sustainable annual event, that can welcome students and scholars at a minimal cost. Any questions about financial, coffee break or in-kind sponsorship options should be directed to . + +Platinum: $5,000 +You may bring a banner to the event or sign for the event lobby. +You will be listed on the conference website and in the printed materials. +We will verbally and enthusiastically thank you in the opening and closing remarks. +Includes four professional registrations for your employees. + +Gold: $3,000 +You will be listed on the conference website and in the printed materials. +We will verbally and enthusiastically thank you in the opening and closing remarks. +Includes two professional registrations. + +Silver: $1,500 +You will be listed on the conference website and in the printed materials. +Includes one professional registration. + +[Download this prospectus](prospectus) or email to sponsor right away! diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 9334d2b78698fdd643a99fa498f864e3b0ed3dfd..86d1fabd90c2a1dbca7ada72225bab30183db129 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -45,7 +45,7 @@ urlpatterns = [ # sponsor url(r"^sponsors/prospectus$", RedirectView.as_view(url=_static("assets/2019_CopyleftConf_prospectus.pdf")), name="sponsors/prospectus"), - # url(r"^sponsors/become-a-sponsor$", TemplateView.as_view(template_name="static_pages/sponsors/become_a_sponsor.html"), name="sponsors/become-a-sponsor"), + url(r"^sponsors/become-a-sponsor$", TemplateView.as_view(template_name="static_pages/sponsors/become_a_sponsor.html"), name="sponsors/become-a-sponsor"), url(r"^sponsors/donate$", DONATE_REDIRECT), url(r"^donate$", DONATE_REDIRECT), url(r"^about/donate$", DONATE_REDIRECT),