{% extends "lms/templates/lms_base.html" %} {% block title %} {{ _("Certified Participants") }} {% endblock %} {% block page_content %}
{% if course_filter | length %} {% endif %}
{{ _("Certified Participants") }}
{% if participants | length %} {{ ParticipantsList() }} {% else %} {{ EmptyState() }} {% endif %}
{% endblock %} {% macro ParticipantsList() %}
{% for participant in participants %}
{{ widgets.Avatar(member=participant, avatar_class="avatar-large") }}
{{ participant.full_name }}
{% for course in participant.courses %}
{{ course }}
{% endfor %}
{% endfor %}
{% endmacro %} {% macro EmptyState() %}
{{ _("No Certified Participants") }}
{{ _("Enroll in a batch to get certified.") }}
{% endmacro %}