Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / feedback.html @ 13858d75

History | View | Annotate | Download (566 Bytes)

1
{% extends "account_base.html" %}
2
{% load formatters %}
3

    
4
{% block body %}
5
<form action="{% url astakos.im.views.send_feedback %}" method="post"
6
    class="withlabels">{% csrf_token %}
7

    
8
    {% include "form_render.html" %}
9

    
10
    <div class="form-row submit">
11
        <input type="hidden" name="next" value="{{ next }}">
12
        <input type="hidden" name="auth" value="{{ user.auth_token }}">
13
    <input type="hidden" name="username" value="{{ username }}">
14
        <input type="submit" class="submit altcol" value="UPDATE" />
15
    </div>
16
  
17
</form>
18
{% endblock body %}