Rework session feedback form.
authorChris Ellis <chris@intrbiz.com>
Sat, 14 Sep 2024 17:44:49 +0000 (19:44 +0200)
committerChris Ellis <chris@intrbiz.com>
Sat, 14 Sep 2024 17:44:49 +0000 (19:44 +0200)
templates/confreg/feedback.html [new file with mode: 0644]
templates/confreg/feedback_conference.html

diff --git a/templates/confreg/feedback.html b/templates/confreg/feedback.html
new file mode 100644 (file)
index 0000000..3d35f69
--- /dev/null
@@ -0,0 +1,45 @@
+{%extends "base.html" %}
+{%block title%}Conference Feedback - {{conference}}{%endblock%}
+{%block content%}
+<h1>Session Feedback<span class="confheader"> - {{conference}}</span></h1>
+
+  <div class="page-header-menu">
+    <nav class="button-bar small right">
+        <a class="button primary" href="..">Feedback Overview</a>
+    </nav>
+  </div>
+
+  
+<div class="card">
+    <h4>Feedback For: {{session.title}}</h4>
+    
+    <p>
+        We hope you enjoyed the session: {{session.title}}
+    </p>
+    <p>
+        Please rate the session and leave any comments about the session for the speaker and conference organisers.
+    </p>
+    <p class="warning">
+        Your feedback is anonymised before being presented.  If you wish the speaker or organisers to 
+        know who you are, please leave your name and contact information in your answers.
+    </p>
+
+    <form method="post" action=".">
+        {% if form.errors %}
+        <p class="warning">This form contains errors, please correct these and try again.</p>
+        {% endif %}
+        {{ csrf_input }}
+        {%for field in form %}
+        <div class="field feedback">
+            {{field.label_tag()}}
+            {{field.errors}}
+            {{field}}
+        </div>
+        {%endfor%}
+        <nav class="button-bar small left">
+            <input type="submit" value="Submit Feedback">
+        </nav>
+    </form>
+</div>
+
+{%endblock%}
index e689325493150c56cfdca131cc3acf2c9a1b980c..e41dd09a45028f040d746bd20910e6581384bb95 100644 (file)
@@ -26,9 +26,6 @@
       <p>
         We genuinely appreciate your time in completing this survey. Thank you!
       </p>
-      <p>
-      For questions with a rating, use a scale from 1-5, with 5 being the highest.
-    </p>
   </div>
   
   <form class="feedback" method="post" action=".">