Add conference policy
authorDave Page <dpage@pgadmin.org>
Wed, 11 Dec 2024 12:16:01 +0000 (12:16 +0000)
committerDave Page <dpage@pgadmin.org>
Wed, 11 Dec 2024 12:16:01 +0000 (12:16 +0000)
templates/confreg/policy.html [new file with mode: 0644]

diff --git a/templates/confreg/policy.html b/templates/confreg/policy.html
new file mode 100644 (file)
index 0000000..dadc2ba
--- /dev/null
@@ -0,0 +1,65 @@
+{% extends "confreg/policy.html" %}
+
+{% block policy %}
+<p>By registering for this conference, I agree:</p>
+
+<ul>
+  <li>
+    to abide by the <a href="{{ link("codeofconduct") }}" target="_blank">Code of Conduct;</a>
+  </li>
+  <li>
+    to keep my phone on silent mode and not make or receive calls during talks;
+  </li>
+  <li>
+    that I will not record audio or video of talks unless explicit permission
+    is given by the conference organisers in advance;
+  </li>
+  <li>
+    that the red &ldquo;no photographs&rdquo; lanyards (see below) are a
+    &ldquo;best effort&rdquo; system, and that the conference organisers cannot
+    guarantee that no photographs or videos will exclude anyone wearing one;
+  </li>
+  <li>
+    that I will make every effort to respect the privacy of attendees wearing
+    red lanyards;
+  </li>
+  <li>
+    that if I ask a question during a talk, I may be recorded doing so on
+    video, regardless of whether I am wearing a red lanyard or not.
+  </li>
+</ul>
+
+{#
+  I don't like the h3 here without an intervening h2, but it's what the base
+  template uses for the next section so let's be consistent with that.
+#}
+<h3>Red lanyards</h3>
+
+<p>
+  {{ conference_name }} operates a &ldquo;Red Lanyard&rdquo; scheme that is
+  designed to help you maintain your privacy at our events. When you collect
+  your badge upon arrival at the conference, you will be able to select either
+  a red or blue lanyard. Choosing a red lanyard will indicate to the event
+  organisers and other attendees that you do not wish to have your photograph
+  taken and posted on social media or on other public sites.
+</p>
+
+<p>
+  We will make every effort to honour your wishes, and we ask all attendees to
+  do the same. It is, however, a &ldquo;best effort&rdquo; system and sometimes
+  a red lanyard may not be spotted before a picture is posted publicly. In
+  cases where this happens, please reach out to either the person who posted
+  the picture or to the conference organisers to request that the picture be
+  removed.
+</p>
+
+<p>
+  It should also be noted that we may be video recording some of the talks. If
+  you ask the speaker a question, walk through the room during the talk, or
+  turn towards the camera; your image may be captured on video and subsequently
+  published. If you are concerned about this, please ensure you choose a seat
+  that is unlikely to be seen on camera (it will be focussed on the speaker),
+  and wait until after the session has ended to ask any questions.
+</p>
+
+{% endblock %}