Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (383 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
    <input type="hidden" name="auth" value="{{ user.auth_token }}">
13
    <button type="submit" class="btn primary">Update</button>
14
  </div>
15

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