{% set current_theme = current_theme() %} {{ current_theme.headertags() }} {{ programa.nombre }} - Progreso del Programa {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ programa.nombre }}

Descripción del Programa
{{ markdown2html(programa.descripcion) | safe }}
{% if cursos_programa %}
Cursos del Programa
{% for curso in cursos_programa %}
{{ curso.nombre }}
{{ curso.duracion }} horas

{{ curso.descripcion_corta }}

Nivel: {{ curso.nivel }}
{% endfor %}
{% endif %}
Progreso
{% if progreso and progreso.porcentaje is defined %}
{{ progreso.porcentaje }}%
{% else %}
0%
{% endif %}
{% if progreso and progreso.porcentaje >= 100 %} Programa Completado {% else %} En Progreso {% endif %}
{% if programa.certificado %}
Certificación
{% if progreso and progreso.porcentaje >= 100 %}

¡Certificado disponible!

Ver Certificado {% else %}

Completa todos los cursos para obtener tu certificado.

{% endif %}
{% endif %}