2016-04-19 13:51:16 +01:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2019-10-17 13:27:52 +01:00
|
|
|
|
{% from "components/page-footer.html" import sticky_page_footer %}
|
|
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2016-04-19 13:51:16 +01:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Ask a question or give feedback
|
2016-04-19 13:51:16 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2019-10-17 13:27:52 +01:00
|
|
|
|
{{ page_header(
|
|
|
|
|
|
'Ask a question or give feedback',
|
|
|
|
|
|
back_link=url_for('.support')
|
|
|
|
|
|
) }}
|
2016-04-19 13:51:16 +01:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-two-thirds">
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper() %}
|
2019-10-16 16:34:18 +01:00
|
|
|
|
{{ textbox(form.feedback, width='1-1', hint='', rows=10, autosize=True) }}
|
2016-12-12 11:31:26 +00:00
|
|
|
|
{% if not current_user.is_authenticated %}
|
|
|
|
|
|
<h3 class="heading-medium">Do you want a reply?</h3>
|
2018-03-21 14:42:24 +00:00
|
|
|
|
<p>Leave your details below if you’d like a response.</p>
|
2016-12-12 11:31:26 +00:00
|
|
|
|
{{ textbox(form.name, width='1-1') }}
|
|
|
|
|
|
{{ textbox(form.email_address, width='1-1') }}
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
<p>We’ll reply to {{ current_user.email_address }}</p>
|
|
|
|
|
|
{% endif %}
|
2019-10-17 13:27:52 +01:00
|
|
|
|
{{ sticky_page_footer('Send') }}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2016-04-19 13:51:16 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2016-11-21 11:25:57 +00:00
|
|
|
|
{% endblock %}
|