Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / feedback.html @ 8f5a3a06

History | View | Annotate | Download (606 Bytes)

1
{% extends "im/account_base.html" %}
2

    
3
{% block body %}
4
<form action="{% url astakos.im.views.feedback %}" method="post"
5
    class="withlabels">{% csrf_token %}
6
    
7
    {% with feedback_form as form %}
8
    {% include "im/form_render.html" %}
9
    {% endwith %}
10
    
11
    <div class="form-row submit">
12
        <input type="hidden" name="next" value="{{ next }}">
13
        <input type="hidden" name="auth" value="{{ user.auth_token }}">
14
    <input type="hidden" name="username" value="{{ username }}">
15
        <input type="submit" class="submit altcol" value="SEND" />
16
    </div>
17
  
18
</form>
19
{% endblock body %}