Changeset - 97ebdc4aa9d5
[Not reviewed]
1 1 1
Christopher Neugebauer - 6 years ago 2017-11-30 04:37:26
chrisjrn@gmail.com
Replaces Emergencies page with a safety page
2 files changed with 25 insertions and 10 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/safety.html
Show inline comments
 
file renamed from pinaxcon/templates/static_pages/attend/emergencies.html to pinaxcon/templates/static_pages/safety.html
...
 
@@ -4,5 +4,5 @@
 

	
 
{% block head_title %}Emergencies{% endblock %}
 
{% block head_title %}Participant Safety{% endblock %}
 

	
 
{% block heading %}Emergencies{% endblock %}
 
{% block heading %}Safety{% endblock %}
 

	
...
 
@@ -14,10 +14,12 @@
 

	
 

	
 
{% block content %}
 

	
 
<p>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 <a href="mailto:safety@northbaypython.org">safety@northbaypython.org</a>. If there is imminent danger, please call local emergency dispatch at +1 (707) 762-2727 (the local number for 911) first.</p>
 
<p>Please find an organizer or volunteer if you need to report an issue or ask a question.</p>
 

	
 
<h2>Emergency Dispatch</h2>
 
<ul>
 
  <li>If it's not urgent, email us at <strong><a href="mailto:safety@northbaypython.org">safety@northbaypython.org</a></strong>.</li>
 
  <li>If there is imminent danger, please call local emergency dispatch at <strong>+1 (707) 762-2727</strong> (the local number for 911) first.</li>
 
  <li>If another participant’s behaviour is making you feel unsafe, uncomfortable, or threatened, you can contact a member of our incident by calling <strong>+1 (707) 755-7357</strong>
 
</ul>
 

	
 
<p>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 <a href="http://cityofpetaluma.net/police/">City of Petaluma Police Department</a>.</p>
 

	
...
 
@@ -25,3 +27,7 @@
 

	
 
<p>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 <a href="mailto:safety@northbaypython.org">safety@northbaypython.org</a>. You may also contact venue staff and ask to be put in touch with conference chair <a href="mailto:chrisjrn@northbaypython.org">Christopher Neugebauer</a>.</p>
 
<p>If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact a member of conference staff.</p>
 

	
 
<p>Conference staff and organizers will be wearing badges that clearly identify them as staff or organizers.</p>
 

	
 
<p>You can email the incident response team at <a href="mailto:safety@northbaypython.org">safety@northbaypython.org</a>. You may speak to any conference staff and ask to be put in touch with an organizer.</p>
 

	
...
 
@@ -37,3 +43,9 @@
 

	
 
<h2>Hospitals</h2>
 

	
 
<h2>Emergency Dispatch</h2>
 

	
 
<p>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 <a href="http://cityofpetaluma.net/police/">City of Petaluma Police Department</a>.</p>
 

	
 

	
 
<h2>Hospitals and Medical Care</h2>
 

	
...
 
@@ -61,2 +73,3 @@ Petaluma, CA 94954</p>
 

	
 

	
 
<h2>Pharmacies</h2>
pinaxcon/urls.py
Show inline comments
...
 
@@ -49,4 +49,6 @@ urlpatterns = [
 

	
 
    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"),
0 comments (0 inline, 0 general)