Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (996 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
                <li><a href="https://cyclades.okeanos.grnet.gr/ui/" class="blue">Take me to cyclades ></a></li>
26
                <li><a href="https://pithos.okeanos.grnet.gr/ui/" class="blue">Take me to pithos+ ></a></li>
27
                <li><a href="https://okeanos.grnet.gr/home/" class="blue">~okeanos homepage ></a></li>
28
        </ul>
29
                 
30
</div>
31
{% endblock body %}