Code cleanup. New implementation of long polling timeout. Done by server. Client...
[flowspy] / templates / profile.html
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         {% endfor %}
18
19 </div>
20
21
22
23 {% endblock %}