root / templates / profile.html @ d0777394
History | View | Annotate | Download (670 Bytes)
1 |
{% extends "base.html" %} |
---|---|
2 |
{% load i18n %} |
3 |
|
4 |
{% block title %}{% trans "My profile" %}{% endblock %} |
5 |
{% block content %} |
6 |
<h3>{% trans "My profile" %}</h3> |
7 |
|
8 |
<div id="profile"> |
9 |
My data:<br>
|
10 |
<strong>First name:</strong> {{user.first_name}} <br> |
11 |
<strong>Last name:</strong> {{user.last_name}} <br> |
12 |
<strong>Email:</strong> {{user.email}}<br> |
13 |
<strong>Organization:</strong> {{peer}} <br> |
14 |
<strong>Admin Networks:</strong> <br> |
15 |
{% for network in peer.networks.all %} |
16 |
{{network}}<br>
|
17 |
{% empty %} |
18 |
<span style="color:red">Ooops! Seems you have no networks associated with your peer. Contact Helpdesk to resolve this issue.</span> |
19 |
{% endfor %} |
20 |
|
21 |
</div>
|
22 |
|
23 |
|
24 |
|
25 |
{% endblock %} |