Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (503 Bytes)

1
{% extends "im/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 "im/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 %}