{% extends "trainings/trainingactivity_base_detail.html" %} {% load i18n template_tools %} {% block main %}

{{ workshop.description }}

{% if workshop.is_assessing %} {% trans 'Assessing quiz' %} {% if workshop.is_steps_order_random %} - {% get_verbose_field_name workshop "is_steps_order_random" %} {% endif %} {% if workshop.are_questions_mandatory %} - {% get_verbose_field_name workshop "are_questions_mandatory" %} {% endif %} {% if workshop.is_questions_answers_order_random %} - {% get_verbose_field_name workshop "is_questions_answers_order_random" %} {% endif %} {% if workshop.needs_approval %} - {% get_verbose_field_name workshop "needs_approval" %} {% endif %} {% else %} {% if workshop.is_broadcastable %} {% trans 'Live voting' %} {% else %} {% trans 'Quiz' %} {% endif %} {% if workshop.enable_score %} - {% get_verbose_field_name workshop "enable_score" %} {% endif %} {% endif %}

{% if workshop.training.is_editable %} {% trans 'Modify parameters' %} {% endif %}

{% trans 'Steps' %} {% if steps and workshop.training.is_editable %} {% trans 'Sort steps' %} {% trans 'Delete steps' %} {% endif %}

{% if workshop.training.is_editable %} {% endif %}

    {% for step in steps %}
  1. {% if step.step_name == 'image' %} {% endif %}

    {{ step.title }}

      {% for answer in step.answers.non_deleted %}
    • {% if answer.is_correct %} {% endif %} {{ answer.label }}
    • {% endfor %}
    {% if workshop.training.is_editable %} {% endif %}
  2. {% endfor %}
{% endblock %}