Cambios de Device model

This commit is contained in:
fjrodriguez
2023-01-30 09:07:10 -06:00
parent b69f6dbb98
commit e5aab94cf6
6 changed files with 174 additions and 7 deletions

View 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 %}