{% extends "trainings/base.html" %} {% load base_tags %} {% load bootstrap_pagination_tags %} {% load training_tags %} {% load training_filters %} {% load styled_forms %} {% block title %}{% trans "Transcripts" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content_classes %}{{ block.super }} t-search-view{% endblock %} {% block content %}

{% trans 'Transcripts' %} {% if corp_profile %}- {{ corp_profile.name }}{% endif %}

{% if participants_form %}
{% csrf_token %} {% include "trainings/includes/participants_form.html" %}
{% endif %}
{% csrf_token %} {% if hidden_participants_form %} {{ hidden_participants_form|styled_form }} {% endif %} {% include "trainings/includes/courses_info_form.html" %}
{% if step == 'step3' %} {% if users|length > 1 %}
{% endif %} {% autopaginate users 20 %}
{% for customer in users %}
{% include "trainings/includes/customer_transcript.html" %}
{% endfor %} {% paginate %}
{% endif %} {# end of step3 #}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}