diff --git a/fixtures/sitetree.json b/fixtures/sitetree.json index 9aa26150152df16e6319f3524fd3a376dca625a2..6b22de1aab1d37ad4057aa7487985da96ce42815 100644 --- a/fixtures/sitetree.json +++ b/fixtures/sitetree.json @@ -606,5 +606,29 @@ "sort_order": 36, "access_permissions": [] } +}, +{ + "model": "sitetree.treeitem", + "pk": 38, + "fields": { + "title": "Transparency Reports", + "hint": "", + "url": "about/transparency", + "urlaspattern": false, + "tree": 1, + "hidden": false, + "alias": null, + "description": "", + "inmenu": true, + "inbreadcrumbs": true, + "insitetree": true, + "access_loggedin": false, + "access_guest": false, + "access_restricted": false, + "access_perm_type": 1, + "parent": 1, + "sort_order": 38, + "access_permissions": [] + } } ] diff --git a/pinaxcon/templates/static_pages/about/transparency/program.html b/pinaxcon/templates/static_pages/about/transparency/program.html new file mode 100644 index 0000000000000000000000000000000000000000..22e52c9e6ac12c21cf58499613d41f41cc47ed38 --- /dev/null +++ b/pinaxcon/templates/static_pages/about/transparency/program.html @@ -0,0 +1,18 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Program Transparency Reports{% endblock %} + +{% block heading %}Program Transparency Reports{% endblock %} + +{% block body_class %}about{% endblock %} + +{% block lede %} + +{% endblock %} + +{% block content %} + + +{% endblock %} \ No newline at end of file diff --git a/pinaxcon/templates/static_pages/about/transparency/transparency.html b/pinaxcon/templates/static_pages/about/transparency/transparency.html new file mode 100644 index 0000000000000000000000000000000000000000..449696fed3f5a44d655518702116854e903e7aee --- /dev/null +++ b/pinaxcon/templates/static_pages/about/transparency/transparency.html @@ -0,0 +1,27 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Transparency Reports{% endblock %} + +{% block heading %}Transparency Reports{% endblock %} + +{% block body_class %}about{% endblock %} + +{% block lede %} + North Bay Python, a nonprofit community-run event committed to transparency, releases the following reports in order to help us learn and better serve the community. +{% endblock %} + +{% block content %} + +

Program Transparency Report

+ +

Tuesday, October 24, 2017—The North Bay Python organizing team's goal is to build a program with sessions and keynotes that are valuable to the attendees, and to do so ethically. We recognized some known issues, and that our knowledge is limited, so we reached out to the community and took steps to run the best and most fair program building process we could.

+ +Read the Report + +

Upcoming Reports

+ +

We will release reports about attendee demographics, our budget, and other topics in the future. They will all be listed on this page.

+ +{% endblock %} \ No newline at end of file diff --git a/pinaxcon/templates/static_pages/news.html b/pinaxcon/templates/static_pages/news.html index c6db7872dff5717a9a61d8de7eaefdb06d9f69e5..4d1733611fce9b48026e672c3c47f09909486ad5 100644 --- a/pinaxcon/templates/static_pages/news.html +++ b/pinaxcon/templates/static_pages/news.html @@ -10,6 +10,21 @@ {% block content %} + +

Full program and Transparency Report released

+ +

Tuesday, October 24, 2017—We've now confirmed all 20 of our session speakers and are pleased to announce Brandon Rhodes will be joining Carina C. Zona as a keynote speaker at North Bay Python 2017.

+ +

STUFF ABOUT BRANDON

+ +

Now that the program's been completed, we can also release our Program Transparency Report. While we're proud of our program, we set goals for our program and didn't achieve them all. Our report details the issues, initiatives, and next steps so we can do a better job next year.

+ +

We are pleased to say that X% of our speakers are women and Y% of sessions are being given by first-time speakers we helped with their proposals. All speakers are invited to a join us for a pre-event training.

+ +

With the conference just 6 weeks away, we've launched the Attendee Wiki so people can organize ride and roomshares, and get togethers.

+ +

In the coming weeks we will add a visitor's guide including gyms, restaurants, local parks, tourist attractions, and activities for people who are traveling with their families.

+

Preview the North Bay Python 2017 program schedule

diff --git a/pinaxcon/templates/static_pages/program/events.html b/pinaxcon/templates/static_pages/program/events.html index 1d4d1e124fc8359773676b843d4111519d5bbaa2..e689509666f24d9b6cb517c1ae78b13ab3d8b9f2 100644 --- a/pinaxcon/templates/static_pages/program/events.html +++ b/pinaxcon/templates/static_pages/program/events.html @@ -28,6 +28,6 @@

North Bay Python 2017
December 2-3, 2017

-

This year's main event will run from 10:00am to 6:00pm each day with check-in starting at 9:00am on Saturday. Our program schedule will be released later this month. You can buy your ticket today!

+

This year's main event will run from 10:00am to 6:00pm each day with check-in starting at 9:00am on Saturday. There are 20 sessions and 2 keynotes that make up the North Bay Python 2017 program. We will post our session schedule in the coming weeks.

{% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 461d80fa5eae3df91c005609f8d2f1e9c2febd70..d192f33341f78d579abfc02be98948e94a3c4103 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -19,6 +19,8 @@ urlpatterns = [ url(r"^about/north-bay-python$", TemplateView.as_view(template_name="static_pages/about/north_bay_python.html"), name="about/north-bay-python"), url(r"^about/petaluma$", TemplateView.as_view(template_name="static_pages/about/petaluma.html"), name="about/petaluma"), url(r"^about/team$", TemplateView.as_view(template_name="static_pages/about/team.html"), name="about/team"), + url(r"^about/transparency$", TemplateView.as_view(template_name="static_pages/about/transparency/transparency.html"), name="about/transparency"), + url(r"^about/program-transparency$", TemplateView.as_view(template_name="static_pages/about/transparency/program.html"), name="about/program-transparency"), url(r"^about/colophon$", TemplateView.as_view(template_name="static_pages/about/colophon.html"), name="about/colophon"), # program