root / snf-astakos-app / astakos / im / templates / im / feedback.html @ 27e51b28
History | View | Annotate | Download (893 Bytes)
1 |
{% extends "im/account_base.html" %} |
---|---|
2 |
{% load astakos_tags i18n %} |
3 |
|
4 |
{% block page.title %}Contact{% endblock %} |
5 |
|
6 |
{% block body %} |
7 |
|
8 |
<h2>{% trans "CONTACT US" %} </h2> |
9 |
<p>
|
10 |
If you would like to contact us for any reason, please feel free to |
11 |
write <br>your message in the following form. Feedback and suggestions are<br> |
12 |
also highly appreciated.</p>
|
13 |
<form action="{% url feedback %}" method="post" |
14 |
class="withlabels contactform">{% csrf_token %} |
15 |
|
16 |
{% with feedback_form as form %} |
17 |
{% include "im/form_render.html" %} |
18 |
{% endwith %} |
19 |
|
20 |
<div class="form-row submit"> |
21 |
<input type="hidden" name="next" value="{{ next }}"> |
22 |
<input type="hidden" name="auth" value="{{ user.auth_token }}"> |
23 |
<input type="hidden" name="username" value="{{ username }}"> |
24 |
<input type="submit" class="submit altcol" value="SEND" /> |
25 |
</div>
|
26 |
|
27 |
</form>
|
28 |
{% endblock body %} |