113 lines
3.7 KiB
HTML
113 lines
3.7 KiB
HTML
|
{% extends "base.html" %}
|
||
|
{% comment %}
|
||
|
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
||
|
se veut agnostique au réseau considéré, de manière à être installable en
|
||
|
quelques clics.
|
||
|
|
||
|
Copyright © 2017 Gabriel Détraz
|
||
|
Copyright © 2017 Goulven Kermarec
|
||
|
Copyright © 2017 Augustin Lemesle
|
||
|
|
||
|
This program is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License along
|
||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||
|
{% endcomment %}
|
||
|
|
||
|
{% load bootstrap3 %}
|
||
|
|
||
|
{% block title %}Profil{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Compte</h2>
|
||
|
<div>
|
||
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:edit-info' user.id %}">
|
||
|
<i class="glyphicon glyphicon-edit"></i>
|
||
|
Editer
|
||
|
</a>
|
||
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:password' user.id %}">
|
||
|
<i class="glyphicon glyphicon-lock"></i>
|
||
|
Changer le mot de passe
|
||
|
</a>
|
||
|
{% if is_admin %}
|
||
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:state' user.id %}">
|
||
|
<i class="glyphicon glyphicon-flash"></i>
|
||
|
Changer le statut
|
||
|
</a>
|
||
|
{% endif %}
|
||
|
<a class="btn btn-info btn-sm" role="button" href="{% url 'users:history' 'user' user.id %}">
|
||
|
<i class="glyphicon glyphicon-time"></i>
|
||
|
Historique
|
||
|
</a>
|
||
|
</div>
|
||
|
<p>
|
||
|
<br />
|
||
|
</p>
|
||
|
<table class="table table-striped">
|
||
|
<tr>
|
||
|
<th>Prénom</th>
|
||
|
<td>{{ user.name }}</td>
|
||
|
<th>Nom</th>
|
||
|
<td>{{ user.surname }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Pseudo</th>
|
||
|
<td>{{ user.pseudo }}</td>
|
||
|
<th>E-mail</th>
|
||
|
<td>{{ user.email }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Commentaire</th>
|
||
|
<td>{{ user.comment }}</td>
|
||
|
<th>Date d'inscription</th>
|
||
|
<td>{{ user.registered }}</td>
|
||
|
</tr>
|
||
|
<th>Statut</th>
|
||
|
{% if user.state == 0 %}
|
||
|
<td><font color="green">Actif</font></td>
|
||
|
{% elif user.state == 1 %}
|
||
|
<td><font color="red">Désactivé</font></td>
|
||
|
{% else %}
|
||
|
<td><font color="orange">Archivé</font></td>
|
||
|
{% endif %}
|
||
|
<th>Dernière connexion</th>
|
||
|
<td>{{ user.last_login }}</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<h2>Machines enregistrées</h2>
|
||
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:capture' %}">
|
||
|
<i class="glyphicon glyphicon-flash"></i>
|
||
|
Enregistrer la machine utilisée actuellement
|
||
|
</a>
|
||
|
<table class="table table-striped">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Adresse mac</th>
|
||
|
<th>Historique</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
{% for machine in machines_list %}
|
||
|
<tr>
|
||
|
<td>{{ machine.mac_address }}</td>
|
||
|
<td><a class="btn btn-info btn-sm" role="button" href="{% url 'users:history' 'machines' machine.id %}">
|
||
|
<i class="glyphicon glyphicon-time"></i>
|
||
|
</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
<br />
|
||
|
<br />
|
||
|
<br />
|
||
|
{% endblock %}
|
||
|
|