{% extends 'base.html' %}{% load static %} {% load static %} {% block title %}Listado de Capacitadores{% endblock title %} {% block content %}

Listado de Capacitadores

{% for c in capacitadores %} {% endfor %}
ID Nombre Miembro Identidad (DNI) Teléfono Dirección Sexo Estado Asignado por Fecha Creado Acciones
{{ c.id }} {{ c.nombre_miembro }} {{ c.dni }} {{ c.telefono1 }} {{ c.direccion }} {{ c.sexo }} {% if c.estado == "Activo" %}Activo{% else %}Inactivo{% endif %} {{ c.creado_por }} {{ c.fecha_hora_creado }}
{% endblock content %} {% block scripts %} {% endblock scripts %}