From eb7bcfd0548c0d27e4b7af73cb30d82a92890798 2017-11-11 23:18:55 From: Joshua Simmons Date: 2017-11-11 23:18:55 Subject: [PATCH] add accessibility and accommodation guide --- diff --git a/fixtures/sitetree.json b/fixtures/sitetree.json index b328119249500d94fcec280a76a800dc926d5cc5..3f2b1d1e4170c6c8fe305fb43ba1490aa8699630 100644 --- a/fixtures/sitetree.json +++ b/fixtures/sitetree.json @@ -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": [] + } } ] diff --git a/pinaxcon/templates/static_pages/attend/accommodations.html b/pinaxcon/templates/static_pages/attend/accommodations.html new file mode 100644 index 0000000000000000000000000000000000000000..ce774140d6199310ae8ebccfc999450f5f0de231 --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/accommodations.html @@ -0,0 +1,50 @@ +{% 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 spam@northbaypython.org or speak to an organizer or volunteer in-person. + +

Accessibility

+ + + +

Wheelchair / Mobility Issues

+ +

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.

+ +

Accommodations

+ + + +

Dietary Restrictions

+ +

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.

+ +

Parents with Children

+ +

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.

+ +

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.

+ +{% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 3f5db1a2c158ac67ebaaf0172a66f6627eec42af..a936b8b4b0259fbc918f2ca3d1b37d1360c0f2aa 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -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"),