Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (497 Bytes)

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

    
3
{% load formatters %}
4

    
5
{% block body %}
6

    
7
<form action={%url astakos.im.views.edit_profile %} method="post"
8
    class="withlabels">{% csrf_token %}
9

    
10
    {% include "form_render.html" %}
11

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

    
18
</form>
19
{% endblock body %}