From b0d988a339f0b115e00d6f712cebb4d238385d0a 2017-11-13 17:48:02 From: Joshua Simmons Date: 2017-11-13 17:48:02 Subject: [PATCH] draft emergencies copy, add urls for new pages --- diff --git a/pinaxcon/templates/static_pages/attend/emergencies.html b/pinaxcon/templates/static_pages/attend/emergencies.html new file mode 100644 index 0000000000000000000000000000000000000000..cbd0c372986718fe86b5626fb77c2d5555faec1a --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/emergencies.html @@ -0,0 +1,73 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Emergencies{% endblock %} + +{% block heading %}Emergencies{% endblock %} + +{% block body_class %}attend{% endblock %} + +{% block lede %} + If a person's safety or health are at risk, please call local emergency dispatch at +1 (707) 762-2727 to get the police, fire department, or an ambulance, and then notify event organizers. +{% endblock %} + + +{% block content %} + +

Please find an organizer or volunteer if you need to report an issue or ask a question. If it's not urgent, email us at spam@northbaypython.org. If there is imminent danger, please call local emergency dispatch at +1 (707) 762-2727 (the local number for 911) first.

+ +

Emergency Dispatch

+ +

911 is the number to dial to reach emergency dispatch in the United States. If you are dialing from a mobile phone, dial +1 (707) 762-2727 so that you are immediately connected with Petaluma's emergency dispatchers. You can find more information on the website for the City of Petaluma Police Department.

+ +

Code of Conduct Incident Reporting

+ +

If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact a member of conference staff. Conference staff will be wearing t-shirts and/or badges that clearly identify them as staff. You may also contact venue staff and ask to be put in touch with conference chair Christopher Neugebauer.

+ +

If the matter is especially urgent, please call our Code of Conduct and safety incident hotline. The phone number for this hotline will be released shortly before the conference begins. This number will automatically route to a member of the conference staff who can render assistance.

+ +

For more information:

+ + + +

Hospitals

+ +

Emergency Room

+ +

Petaluma Valley St. Joseph Emergency Room, 1.9 miles from the conference venue, is open 24/7 and can be reached by phone at +1 (707) 778-1111.

+ +

400 North McDowell Blvd.
+Petaluma, CA 94954

+ +

Petaluma Health Center

+ +

Petaluma Health Center, 3 miles from the conference venue, is a community health center that accepts patients with or without insurance and offers a sliding scale for assessing fees. You must call +1 (707) 559-7500 to make an appointment, or +1 (707) 559-7602 for dental appointments.

+ +

1179 North McDowell Blvd.
+Petaluma, CA 94954

+ +

Sutter Walk-In Care

+ +

Sutter Health Walk-In Care, 2.1 miles from the conference venue, is open from 8 AM to 8 PM every day and does not require you to make an appointment. You can call them at +1 (800) 972-5547.

+ +

411 North McDowell Blvd.
+Unit 41 Suite 10
+Petaluma, CA 94954

+ +

Pharmacies

+ +

Here is a listing of local pharmacies ordered by distance from the conference venue:

+ + + +{% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/food.html b/pinaxcon/templates/static_pages/attend/food.html new file mode 100644 index 0000000000000000000000000000000000000000..d7804e9997a7c3b6d156aa572a2a0f34a3f2cb08 --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/food.html @@ -0,0 +1,20 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Finding Food{% endblock %} + +{% block heading %}Finding Food{% endblock %} + +{% block body_class %}attend{% endblock %} + +{% block lede %} + +{% endblock %} + + +{% block content %} + +Finding Food is easy in Petaluma, especially with this guide to local restaurants and markets with details about price, distance, and dietary restrictions. + +{% endblock %} diff --git a/pinaxcon/templates/static_pages/attend/transit.html b/pinaxcon/templates/static_pages/attend/transit.html new file mode 100644 index 0000000000000000000000000000000000000000..def1c1b1a7f9bda5f9e821e0ea5d3c4aad21dcb4 --- /dev/null +++ b/pinaxcon/templates/static_pages/attend/transit.html @@ -0,0 +1,20 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} + +{% block head_title %}Getting Around Ptown{% endblock %} + +{% block heading %}Getting Around Ptown{% endblock %} + +{% block body_class %}attend{% endblock %} + +{% block lede %} + +{% endblock %} + + +{% block content %} + +Getting Around Ptown has key distances and details about taxis, busses, and walking paths. + +{% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index abcb77225148599a1ba13f34489d650699fede5a..277cdb8a2cfb4775906494dff90aa5f2bfb429bb 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -15,6 +15,7 @@ import symposion.views urlpatterns = [ url(r"^$", TemplateView.as_view(template_name="static_pages/homepage.html"), name="home"), + # about 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"), @@ -42,7 +43,12 @@ urlpatterns = [ 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"^guides$",TemplateView.as_view(template_name="static_pages/attend/guides.html"), name="attend/guides"), - + url(r"^emergencies$", TemplateView.as_view(template_name="static_pages/attend/emergencies.html"), name="attend/emergencies"), + url(r"^emergency$", RedirectView.as_view(url="attend/emergencies")), + url(r"^attend/food$", TemplateView.as_view(template_name="static_pages/attend/food.html"), name="attend/food"), + url(r"^food$", RedirectView.as_view(url="attend/food")), + url(r"^attend/transit$", TemplateView.as_view(template_name="static_pages/attend/transit.html"), name="attend/transit"), + url(r"^transit$", RedirectView.as_view(url="attend/transit")), 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"),