Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / profile.html @ fc1e2f02

History | View | Annotate | Download (517 Bytes)

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

    
3
{% block body %}
4

    
5
<form action={%url edit_profile %} method="post" class="withlabels">{% csrf_token %}
6
    
7
    {% with profile_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="submit" class="submit altcol" value="UPDATE" />
15
    </div>
16

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