Changeset - 2b4006877670
[Not reviewed]
2 1 2
Christopher Neugebauer - 5 years ago 2019-06-09 00:20:53
_@chrisjrn.com
CFP -> Speak
4 files changed with 35 insertions and 34 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/program/call_for_proposals.html
Show inline comments
 
deleted file
pinaxcon/templates/static_pages/speak.html
Show inline comments
 
new file 100644
 
{% 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 %}
pinaxcon/templates/static_pages/speak.md
Show inline comments
 
file renamed from pinaxcon/templates/static_pages/program/call_for_proposals.md to pinaxcon/templates/static_pages/speak.md
 
### 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 3–4**: 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 2–3**: 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
pinaxcon/urls.py
Show inline comments
...
 
@@ -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"),
0 comments (0 inline, 0 general)