Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (757 Bytes)

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

    
3
{% block headjs %}
4
        {{ block.super }}         
5
        <script src="{{ IM_STATIC_URL }}js/auth_methods.js"></script>        
6
{% endblock %}        
7
{% block body %}
8

    
9
<h2>GENERAL INFO</h2>
10
<form action={%url edit_profile %} method="post" class="withlabels hidden-submit">{% csrf_token %}
11
    
12
    {% with profile_form as form %}
13
        {% include "im/form_render.html" %}
14
    {% endwith %}
15

    
16
    <div class="form-row submit">
17
        <input type="hidden" name="next" value="{{ next }}">
18
        <input type="hidden" name="auth" value="{{ user.auth_token }}">
19
        <input type="submit" class="submit altcol" value="UPDATE" />
20
    </div>
21
</form>
22
 
23

    
24
<div class="full-dotted">
25
    {% include "im/profile_auth_methods.html" %}
26
</div>
27

    
28
 
29
{% endblock body %}