{% set current_theme = current_theme() %} {% set config = config() %} {{ current_theme.headertags() }} {{ evaluation.title }} - Evaluación {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ evaluation.title }}

{% if evaluation.is_exam %} Examen {% else %} Quiz {% endif %}
{% if evaluation.description %}

{{ evaluation.description }}

{% endif %}
Instrucciones:
  • Puntuación mínima para aprobar: {{ evaluation.passing_score }}%
  • {% if evaluation.max_attempts %}
  • Número máximo de intentos: {{ evaluation.max_attempts }}
  • {% else %}
  • Intentos ilimitados
  • {% endif %} {% if evaluation.available_until %}
  • Disponible hasta: {{ evaluation.available_until.strftime('%d/%m/%Y %H:%M') }}
  • {% endif %}
{% for question in evaluation.questions %}
Pregunta {{ loop.index }}

{{ question.text }}

{% if question.type == "boolean" %}
{% elif question.type == "multiple" %} {% set correct_count = question.options | selectattr("is_correct", "equalto", true) | list | length %} {% if correct_count > 1 %}

Seleccione todas las opciones correctas:

{% for option in question.options %}
{% endfor %} {% else %}

Seleccione una opción:

{% for option in question.options %}
{% endfor %} {% endif %} {% endif %}
{% endfor %}