{% 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") }}