diff --git a/pinaxcon/templates/static_pages/attend/emergencies.html b/pinaxcon/templates/static_pages/safety.html similarity index 75% rename from pinaxcon/templates/static_pages/attend/emergencies.html rename to pinaxcon/templates/static_pages/safety.html index 7d647451c6a6859dc3dbca1a8821bb97f7f23463..f60143fdb3049d1a48980e00e04c09e9ed835cbe 100644 --- a/pinaxcon/templates/static_pages/attend/emergencies.html +++ b/pinaxcon/templates/static_pages/safety.html @@ -2,9 +2,9 @@ {% load i18n %} -{% block head_title %}Emergencies{% endblock %} +{% block head_title %}Participant Safety{% endblock %} -{% block heading %}Emergencies{% endblock %} +{% block heading %}Safety{% endblock %} {% block body_class %}attend{% endblock %} @@ -12,18 +12,24 @@ 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 safety@northbaypython.org. If there is imminent danger, please call local emergency dispatch at +1 (707) 762-2727 (the local number for 911) first.

+

Please find an organizer or volunteer if you need to report an issue or ask a question.

-

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 can email the incident response team at safety@northbaypython.org. You may also contact venue staff and ask to be put in touch with conference chair Christopher Neugebauer.

+

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 and organizers will be wearing badges that clearly identify them as staff or organizers.

+ +

You can email the incident response team at safety@northbaypython.org. You may speak to any conference staff and ask to be put in touch with an organizer.

If the matter is especially urgent, please dial our Code of Conduct incident hotline +1 (707) 755-7357. This number will automatically route to a member of the conference staff who can render assistance.

@@ -35,7 +41,13 @@
  • Staff procedure for incident handling
  • -

    Hospitals

    + +

    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.

    + + +

    Hospitals and Medical Care

    Emergency Room

    @@ -59,6 +71,7 @@ Petaluma, CA 94954

    Unit 41 Suite 10
    Petaluma, CA 94954

    +

    Pharmacies

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

    diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 64481b5165954ad682812e33d665fe70da1069df..b1caf840893f5808e8fcd2b521df299068046819 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -47,8 +47,10 @@ urlpatterns = [ url(r"^guides$",TemplateView.as_view(template_name="static_pages/attend/guides.html"), name="attend/guides"), url(r"^guide$", RedirectView.as_view(url="guides")), - url(r"^emergencies$", TemplateView.as_view(template_name="static_pages/attend/emergencies.html"), name="attend/emergencies"), - url(r"^emergency$", RedirectView.as_view(url="emergencies")), + url(r"^safety$", TemplateView.as_view(template_name="static_pages/safety.html"), name="safety"), + url(r"^emergencies$", RedirectView.as_view(url="safety")), + url(r"^emergency$", RedirectView.as_view(url="safety")), + 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"),