Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (538 Bytes)

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

    
3
{% block body %}
4

    
5
<form action={%url astakos.im.views.edit_profile %} method="post"
6
    class="withlabels">{% csrf_token %}
7
    
8
    {% with profile_form as form %}
9
    {% include "im/form_render.html" %}
10
    {% endwith %}
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 %}