{% set current_theme = current_theme() %} {% set config = config() %} {{ current_theme.headertags() }} {{ curso.nombre | title }} {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{% if curso.portada and course_logo(curso.codigo) %} {{ _('Portada del Curso') }} {% else %}

{{ curso.nombre }}

{% endif %}

{{ curso.nombre }}

{% if editable %} {% endif %}
{{ markdown2html(curso.descripcion) | safe }}
  • {% if curso.fecha_inicio and curso.fecha_fin %} {{ _('Fechas:') }} {{ curso.fecha_inicio }} - {{ curso.fecha_fin }} {% else %} {{ _('Modalidad:') }} {{ _('A su propio ritmo') }} {% endif %}
  • {% if curso.precio %}
  • {{ _('Precio:') }} ${{ curso.precio | float }} {{ config.moneda }}
  • {% else %}
  • {{ _('Curso Gratuito') }}
  • {% endif %} {% if curso.certificado %}
  • {{ _('Certificación:') }} {{ _('Incluida') }}
  • {% endif %} {% if curso.capacidad %}
  • {{ _('Cupo:') }} {{ _('Limitado') }}
  • {% endif %}
  • {{ _('Nivel:') }} {{ nivel[curso.nivel] | safe }}
{% if descargas %}
{{ _('Recursos Descargables') }}
{% for item in descargas %} {{ tipo[item.tipo] | safe }} {{ item.nombre }} {% endfor %}
{% endif %} {% if current_user.is_authenticated %} {% if current_user.tipo == "student" %} {% if estudiante_asignado(curso.codigo) %} {% else %} {% endif %} {% endif %} {% else %}

{{ _('Para acceder al curso necesitas una cuenta') }}

{% endif %}

{{ _('Contenido del curso') }}

{% if secciones %}
{% for seccion in secciones %}

{% if seccion.descripcion %}

{{ seccion.descripcion }}

{% endif %}
{% for recurso in recursos %} {% if recurso.seccion == seccion.id %}
{% if recurso.publico == True %} {{ recurso.nombre }} {{ _('Vista Previa') }} {% else %}
{{ recurso.nombre }}
{{ _('Restringido') }} {% endif %}
{% endif %} {% endfor %}
{% endfor %}
{% else %}

{{ _('Sin contenido disponible') }}

{{ _('Este curso actualmente no cuenta con secciones disponibles.') }}

{% endif %}