{% extends "base.html" %} {% load i18n %} {% block actions %} {% trans 'Back to the sessions list' %} {% endblock %} {% block subtitle %} {% blocktrans with training_name=trainingsession.training session_date=trainingsession.start_date %} Whoswho from the scenario "{{ training_name }}" of {{ session_date }} {% endblocktrans %} {% endblock %} {% block main %}
{% for user_item in users %}
{% if user_item.photo.img %} {% else %} {% endif %}

{{ user_item.first_name|capfirst }} {{ user_item.last_name|upper }}

{% if user_item.id == user.id or user.is_staff or user.is_superuser %}

{% trans 'Download content' %}

{% endif %}
{% endfor %}
{% endblock %}