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