Cambios de Device model
This commit is contained in:
33
Templates/Sistemas/Usuarios/lista.html
Normal file
33
Templates/Sistemas/Usuarios/lista.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
| Sistemas
|
||||
{% endblock title %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
<table class="table">
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
<th scope="col">Usuario</th>
|
||||
<th scope="col">Expira</th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{% for user in object_list %}
|
||||
<tr>
|
||||
<th scope="row">{{user.username}}</th>
|
||||
<td>Session expire at: {{ user.session_expire }}</td>
|
||||
<td>-</td>
|
||||
<td><a href="#" class="btn btn-info">Detalles</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user