{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block content %}
{% if user.is_superuser %} Crear Usuario IB {% endif %}

USUARIOS

USUARIOS

{% for dato in datos %} {% endfor %}
__ USUARIO Ó IB NOMBRE APELLIDOS ULTIMA CONEXION ES ADMIN ACCIONES
{{ dato.username }} {{ dato.first_name }} {{ dato.last_name }} {{ dato.last_login }} {% if dato.is_superuser %}

Admin

{% else %}

Usuario

{% endif %}
{% if user.is_superuser %}Actualizar{% endif %}
{% endblock content %}