add code of conduct to website

This commit is contained in:
Thomas Steen Rasmussen 2016-06-06 17:33:25 +02:00
parent d82085673b
commit 219ad2e5fd
4 changed files with 44 additions and 1 deletions

View File

@ -76,6 +76,7 @@
<div class="col-sm-12 col-md-12 col-lg-12">
{% block footer %}
<a href="{% url 'general-terms' %}">General Terms &amp; Conditions</a> |
<a href="{% url 'conduct' %}">Code of Conduct</a> |
<a href="{% url 'privacy-policy' %}">Privacy Policy</a>
{% endblock %}
</div>

View File

@ -0,0 +1,37 @@
{% extends 'base.html' %}
{% block content %}
<h2>Code of Conduct</h2>
<p class="lead">We are committed to making BornHack an inclusive and welcoming event for everyone. The most important rule is: Be excellent to eachother.</p>
<p>Sadly, technology events have a notorious reputation for harassment. We've set these ground rules to make it abundantly clear that this kind of behaviour is not acceptable, so that everyone can feel comfortable attending BornHack.</p>
<p>Everyone who visits BornHack is required to abide by this code of conduct, both at the event and on any online channels. We will not tolerate harassment of participants or discriminatory behaviour of any form. Specifically:</p>
<p>
<ul>
<li>Do not engage in homophobic, racist, transphobic, ableist, sexist, or otherwise prejudiced behaviour.</li>
<li>Do not harass people. Stalking, unconsented physical contact, or sexual attention is harassment. Dressing or acting in a certain way is not consent.</li>
<li>BornHack is a shared space, but every participant's personal space is their own. If you are asked to leave someone alone, or to leave a village, you must respect this.</li>
<li>Some attendees may not want to be filmed or photographed. Respect their wishes.</li>
<li>Aggression and elitism are not welcome — nobody should be afraid to ask questions.</li>
</ul>
</p>
<p>BornHack takes place in an area with beautiful nature all around. We expect everyone to treat the venue with the utmost care and respect. We will not tolerate any kind of vandalism against nature, this includes littering. We are guests in nature, and everyone is expected to act as such.</p>
<p>If you break these rules, we may expel you from the event without a refund, and we may ban you from future BornHack events.</p>
<p>If you are being harassed or witness a breach of this code of conduct, you can get in touch with us in the following ways:</p>
<p>
<ul>
<li>Find a member of event staff and let them know. All our volunteer staff will be briefed on how to handle a harassment situation.</li>
<li>Drop us an email at conduct@bornhack.org</li>
</ul>
</p>
<p>If you have any comments or queries, you can get in touch with our comfort team at conduct@bornhack.org.</p>
{% endblock %}

View File

@ -26,6 +26,11 @@ urlpatterns = [
TemplateView.as_view(template_name='contact.html'),
name='contact'
),
url(
r'conduct/',
TemplateView.as_view(template_name='coc.html'),
name='conduct'
),
url(
r'^login/$',
LoginView.as_view(),

View File

@ -85,7 +85,7 @@ quantities - so make sure your order is correct before proceeding!</p>
{% csrf_token %}
<p>
<div class="checkbox">
<label><input type="checkbox" name="accept_terms"> Accept <a href="{% url 'general-terms' %}">general terms &amp; conditions</a>. If you have puchased merchandise you also accept that the payment will be drawn on your account when you pay, but the merchandise will not be delivered until you pick it up during the event.</label>
<label><input type="checkbox" name="accept_terms"> Accept <a href="{% url 'general-terms' %}">general terms &amp; conditions</a>. If you have puchased merchandise you also accept that the payment will be drawn on your account when you pay, but the merchandise will not be delivered until you pick it up during the event. Finally you accept to adhere to our <a href="{% url 'conduct' %}">Code of Conduct</a> during the event as well as online.</label>
</div>
</p>
{% bootstrap_button "<i class='glyphicon glyphicon-bitcoin'></i> Blockchain" button_type="submit" button_class="btn-primary" name="payment_method" value="blockchain" %}