Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / feedback.html @ 890b0eaf

History | View | Annotate | Download (322 Bytes)

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

    
3
{% load formatters %}
4

    
5
{% block body %}
6

    
7
<form method="post">{% csrf_token %}
8
    {{ form.as_p }}
9

    
10
  <div class="actions">
11
    <input type="hidden" name="next" value="{{ next }}">
12
    <button type="submit" class="btn primary">Send Feedback</button>
13
  </div>
14

    
15
</form>
16
{% endblock body %}