Changeset - eb7bcfd0548c
[Not reviewed]
0 2 1
Joshua Simmons - 6 years ago 2017-11-11 23:18:55
i@joshuasimmons.name
add accessibility and accommodation guide
3 files changed with 101 insertions and 1 deletions:
0 comments (0 inline, 0 general)
fixtures/sitetree.json
Show inline comments
...
 
@@ -616,7 +616,7 @@
 
        "url": "/about/transparency",
 
        "urlaspattern": false,
 
        "tree": 1,
 
        "hidden": false,
 
        "hidden": true,
 
        "alias": null,
 
        "description": "",
 
        "inmenu": true,
...
 
@@ -654,5 +654,53 @@
 
        "sort_order": 32,
 
        "access_permissions": []
 
    }
 
},
 
{
 
    "model": "sitetree.treeitem",
 
    "pk": 40,
 
    "fields": {
 
        "title": "Financial Aid",
 
        "hint": "",
 
        "url": "/attend/finaid",
 
        "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": 8,
 
        "sort_order": 40,
 
        "access_permissions": []
 
    }
 
},
 
{
 
    "model": "sitetree.treeitem",
 
    "pk": 41,
 
    "fields": {
 
        "title": "Accessibility and Accommodations",
 
        "hint": "",
 
        "url": "/attend/accessibility-and-accommodations",
 
        "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": 8,
 
        "sort_order": 41,
 
        "access_permissions": []
 
    }
 
}
 
]
pinaxcon/templates/static_pages/attend/accommodations.html
Show inline comments
 
new file 100644
 
{% extends "page_with_title_and_lede.html" %}
 

	
 
{% load i18n %}
 

	
 
{% block head_title %}Accessibility and Accommodations{% endblock %}
 

	
 
{% block heading %}Accommodations{% endblock %}
 

	
 
{% block body_class %}attend{% endblock %}
 

	
 
{% block lede %}
 
  We've prepared this guide to help you plan and navigate your experience of North Bay Python events.
 
{% endblock %}
 

	
 

	
 
{% block content %}
 

	
 
This guide summarizes accessibility, accommodations, and known issues. If you have any questions or feedback, please contact us by email at <a href="mailto:spam@northbaypython.org">spam@northbaypython.org</a> or speak to an organizer or volunteer in-person.
 

	
 
<h2>Accessibility</h2>
 

	
 
<ul>
 
  <li><strong>Vision Issues</strong>: We have seating reserved at the front of the venue.</li>
 
  <li><strong>Hearing Issues</strong>: We offer live open captioning of every session of the conference.</li>
 
  <li><strong>Service Animals</strong>: We welcome service animals. There is an area that can be used for responsible animal relief across from the lobby of the venue.</li>
 
</ul>
 

	
 
<h3>Wheelchair / Mobility Issues</h3>
 

	
 
<p>Our venue was built pre-ADA in 1912 and presents some challenges for people with mobility issues. The lobby, auditorium, and one bathroom have level access. However, the balcony requires use of stairs and bathroom doors and stalls are narrow. We are currently investigating bathroom options for people with mobility issues.</p>
 

	
 
<h2>Accommodations</h2>
 

	
 
<ul>
 
  <li><strong>Financial Aid / Scholarships</strong>: We want you to be able to attend North Bay Python. You can request a free ticket and <a href="/attend/finaid">apply for financial aid</a>.</li>
 
  <li><strong>Gender Neutral Bathrooms</strong>: There are two bathrooms in the conference venue, one with urinals and one without. Both are gender neutral.</li>
 
  <li><strong>Quiet / Rest Area</strong>: You can access a private quiet room and a rest area across the street from the conference venue at WORK Petaluma.</li>
 
</ul>
 

	
 
<h3>Dietary Restrictions</h3>
 

	
 
<p>We will be providing a small range of drinks and snacks at North Bay Python and will do our best to cater to dietary restrictions noted in your registration. We will not be catering meals and will provide a guide to local stores and restaurants in which we'll highlight each vendor's ability to accommodate dietary restrictions.</p>
 

	
 
<h3>Parents with Children</h3>
 

	
 
<p>We offer access to a private room with power for parents to nurse or pump milk just across the street from the conference venue at WORK Petaluma where parents can also find a bathroom with a changing table.</p>
 

	
 
<p>We are unable to offer childcare this year, but hope to in the future. However, for attendees traveling with their families we offer an activity guide for partners and children.</p>
 

	
 
{% endblock %}
pinaxcon/urls.py
Show inline comments
...
 
@@ -39,6 +39,8 @@ urlpatterns = [
 
    url(r"^attend/travel$", TemplateView.as_view(template_name="static_pages/attend/travel.html"), name="attend/travel"),
 
    url(r"^attend/hotels$", TemplateView.as_view(template_name="static_pages/attend/hotels.html"), name="attend/hotels"),
 
    url(r"^attend/tshirt$", TemplateView.as_view(template_name="static_pages/attend/tshirt.html"), name="attend/tshirt"),
 
    url(r"^attend/accessibility-and-accommodations$",TemplateView.as_view(template_name="static_pages/attend/accommodations.html"), name="attend/accessibility-and-accommodations"),
 
    url(r"^accessibility$", RedirectView.as_view(url="attend/accessibility-and-accommodations")),
 

	
 
    url(r"^code-of-conduct$", TemplateView.as_view(template_name="static_pages/code_of_conduct/code_of_conduct.html"), name="code-of-conduct"),
 
    url(r"^code-of-conduct/harassment-incidents$", TemplateView.as_view(template_name="static_pages/code_of_conduct/harassment_procedure_attendee.html"), name="code-of-conduct/harassment-incidents"),
0 comments (0 inline, 0 general)