CFP -> Speak

This commit is contained in:
Christopher Neugebauer 2019-06-08 17:14:50 -07:00
parent 72f260b5f3
commit 2b40068776
4 changed files with 35 additions and 34 deletions

View file

@ -1,24 +0,0 @@
{% extends "page_with_title_and_lede.html" %}
{% load i18n %}
{% load markdown_deux_tags %}
{% block head_title %}Call for Proposals{% endblock %}
{% block heading %}Call for Proposals{% endblock %}
{% block body_class %}program{% endblock %}
{% block lede %}
North Bay Python is seeking speakers of all experience levels to contribute to our second conference program! We'd love to hear from you whether you use Python professionally, as a hobbyist, or are just excited about Python, programming, and free and open source software.
{% endblock %}
{% block content %}
{% markdown %}
{% include "static_pages/program/call_for_proposals.md" %}
{% endmarkdown %}
{% endblock %}

View file

@ -0,0 +1,24 @@
{% extends "page_with_title_and_lede.html" %}
{% load i18n %}
{% load markdown_deux_tags %}
{% block head_title %}Speak at North Bay Python{% endblock %}
{% block heading %}Speak at North Bay Python{% endblock %}
{% block body_class %}program{% endblock %}
{% block lede %}
North Bay Python is seeking speakers of all experience levels to contribute to our conference program! We'd love to hear from you whether you use Python professionally, as a hobbyist, or are just excited about Python, programming, and free and open source software.
{% endblock %}
{% block content %}
{% markdown %}
{% include "static_pages/speak.md" %}
{% endmarkdown %}
{% endblock %}

View file

@ -1,4 +1,4 @@
### The North Bay Python 2018 CFP is open!
### Proposal submissions for North Bay Python 2019 are open!
There's information and resources below that you should read, but in case you've already read it and want to dive in now:
@ -14,11 +14,11 @@ Portions of this page were drawn from ideas seen on [DjangoCon EU](https://djang
## Dates<a name="dates"></a>
+ **July 5**: CFP opens
+ **August 10**: CFP closes
+ **Week of September 10**: Acceptance notifications sent
+ **Week of September 17**: Speaker confirmations due; program finalized and announced
+ **November 34**: Conference happens!
+ **July 1**: Proposal submissions open
+ **August 8**: Proposal submissions close
+ **Week of August 23**: Acceptance notifications sent
+ **Week of September 9**: Speaker confirmations due; program finalized and announced
+ **November 23**: Conference happens!
## Speaker Benefits
@ -37,7 +37,7 @@ North Bay Python is a conference in support of the local programmer community ou
## Audience
We anticipate more than 300 attendees at our 2018 conference. In 2017, we had 230 attendees from California and beyond, including:
We anticipate 200-300 attendees at our 2019 conference. In 2017, we had 230 attendees from California and beyond, including:
+ 78% from the San Francisco Bay Area, including 25% from Sonoma County
+ 5% from elsewhere in California

View file

@ -28,10 +28,11 @@ urlpatterns = [
# program
url(r"^program/events$", TemplateView.as_view(template_name="static_pages/program/events.html"), name="program/events"),
url(r"^events$", RedirectView.as_view(url="program/events")),
url(r"^program/call-for-proposals$", TemplateView.as_view(template_name="static_pages/program/call_for_proposals.html"), name="program/call-for-proposals"),
url(r"^program/call-for-proposals$", RedirectView.as_view(url="/speak")),
url(r"^program/selection-process$", TemplateView.as_view(template_name="static_pages/program/selection_process.html"), name="program/selection-process"),
url(r"^proposals$", RedirectView.as_view(url="program/call-for-proposals")),
url(r"^cfp$", RedirectView.as_view(url="program/call-for-proposals")),
url(r"^proposals$", RedirectView.as_view(url="/speak")),
url(r"^cfp$", RedirectView.as_view(url="/speak")),
url(r"^speak$", TemplateView.as_view(template_name="static_pages/speak.html"), name="speak"),
# attend
url(r"^attend$", TemplateView.as_view(template_name="static_pages/attend/attend.html"), name="attend/attend"),