--- /dev/null
+{%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%}
<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=".">