Changeset - 520cb1c1efad
[Not reviewed]
0 4 2
Joshua Simmons - 6 years ago 2017-10-17 05:02:07
i@joshuasimmons.name
stub out full program announcement and transparency report
6 files changed with 87 insertions and 1 deletions:
0 comments (0 inline, 0 general)
fixtures/sitetree.json
Show inline comments
...
 
@@ -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": []
 
    }
 
}
 
]
pinaxcon/templates/static_pages/about/transparency/program.html
Show inline comments
 
new file 100644
 
{% 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
pinaxcon/templates/static_pages/about/transparency/transparency.html
Show inline comments
 
new file 100644
 
{% 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 %}
 

	
 
<h2>Program Transparency Report</h2>
 

	
 
<p><span class="date">Tuesday, October 24, 2017</span>&mdash;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.</p>
 

	
 
<a class="btn btn-lg btn-primary" href="/about/program-transparency">Read the Report</a>
 

	
 
<h2>Upcoming Reports</h2>
 

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

	
 
{% endblock %}
...
 
\ No newline at end of file
pinaxcon/templates/static_pages/news.html
Show inline comments
...
 
@@ -10,6 +10,21 @@
 

	
 
{% block content %}
 

	
 
<a name="5"></a>
 
<h2>Full program and Transparency Report released</h2>
 

	
 
<p><span class="date">Tuesday, October 24, 2017</span>&mdash;We've now confirmed <a href="/schedule/general-sessions/list/all">all 20 of our session speakers</a> and are pleased to announce <a href="https://twitter.com/brandon_rhodes">Brandon Rhodes</a> will be joining <a href="https://twitter.com/cczona">Carina C. Zona</a> as a keynote speaker at North Bay Python 2017.<p>
 

	
 
<p>STUFF ABOUT BRANDON</p>
 

	
 
<p>Now that the program's been completed, we can also release our <a href="/about/program-transparency">Program Transparency Report</a>. 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.</p>
 

	
 
<p>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.</p>
 

	
 
<p>With the conference just 6 weeks away, we've launched the <a href="/wiki">Attendee Wiki</a> so people can organize ride and roomshares, and get togethers.</p>
 

	
 
<p>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.</p>
 

	
 
<a name="4"></a>
 
<h2>Preview the North Bay Python 2017 program schedule</h2>
 

	
pinaxcon/templates/static_pages/program/events.html
Show inline comments
...
 
@@ -28,6 +28,6 @@
 
<h2>North Bay Python 2017<br/>
 
  <small>December 2-3, 2017</small></h2>
 

	
 
<p>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 <a href="/tickets">buy your ticket today</a>!</p>
 
<p>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 <a href="/schedule/general-sessions/list/">20 sessions</a> and <a href="/news">2 keynotes</a> that make up the North Bay Python 2017 program. We will post our session schedule in the coming weeks.</p>
 

	
 
{% endblock %}
pinaxcon/urls.py
Show inline comments
...
 
@@ -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
0 comments (0 inline, 0 general)