{% set current_theme = current_theme() %} {{ current_theme.headertags() }} Listado de cursos. {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

Lista de Cursos Disponibles

Gestiona y administra tus cursos de aprendizaje

{% if consulta %}
{% for item in consulta.items -%} {% endfor %}
Lista de cursos disponibles en el sistema.
Código Nombre Inicio Fin Estado Público Acciones
{{ item.codigo }} {{ item.nombre }} {{ item.fecha_inicio }} {{ item.fecha_fin }} {% if item.estado == "draft" %} Borrador {% elif item.estado == "open" %} Abierto {% else %} Cerrado {% endif %} {% if item.publico %} {% else %} {% endif %}
{% else %}
No hay cursos disponibles

Usted no ha creado ningún curso todavía.

Crear Primer Curso
{% endif %}
{{ current_theme.rendizar_paginacion(consulta=consulta, vista="cursos") }}