diff --git a/pinaxcon/templates/static_pages/program/call_for_proposals.html b/pinaxcon/templates/static_pages/program/call_for_proposals.html deleted file mode 100644 index 7a7983bad4ff890a8d6e073879913b4454dccd4f..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/static_pages/program/call_for_proposals.html +++ /dev/null @@ -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 %} diff --git a/pinaxcon/templates/static_pages/speak.html b/pinaxcon/templates/static_pages/speak.html new file mode 100644 index 0000000000000000000000000000000000000000..8d63c742ad06774b00616be6803fc6e5a7b75c3a --- /dev/null +++ b/pinaxcon/templates/static_pages/speak.html @@ -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 %} diff --git a/pinaxcon/templates/static_pages/program/call_for_proposals.md b/pinaxcon/templates/static_pages/speak.md similarity index 94% rename from pinaxcon/templates/static_pages/program/call_for_proposals.md rename to pinaxcon/templates/static_pages/speak.md index fc3a7082fce36fe95d83419889837a78fa875c8b..fccf86932d79c67718c0e0355f78f74d32863ffa 100644 --- a/pinaxcon/templates/static_pages/program/call_for_proposals.md +++ b/pinaxcon/templates/static_pages/speak.md @@ -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 -+ **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 diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index a54b73c694897c5fcfd2410d9d12deaba44e172b..112d52bb033a429572cb6a2e6a176cdd2e19d5a8 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -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"),