Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (842 Bytes)

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

    
3
{% block body %}
4

    
5
<h2>GENERAL INFO</h2>
6
<form action={%url edit_profile %} method="post" class="withlabels hidden-submit">{% 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
</form>
18

    
19
<div class="full-dotted">
20
    {% include "im/profile_auth_methods.html" %}
21
</div>
22

    
23
<div class="full-dotted right-align">
24
        <ul class="options">
25
        {% for s in services %}
26
                    <li><a href="{{s.url}}" class="blue">Take me to {{s.name}}></a></li>
27
        {% endfor %}
28
        </ul>
29
                 
30
</div>
31
{% endblock body %}