{% extends "layout.html" %} {% import "macros/_misc.html" as misc %} {% block page_title %}Participants{% endblock %} {% block body_class %}eventusers{% endblock %} {% block content %} {% if cert_path %}
✔️  Download Certificate
{% endif %}

Contributors

Search
{% if participants %}
{% for user in participants %} {{ misc.render_user_profile(user) }} {% endfor %}
{% endif %}
{% if current_event and current_event.has_started and not current_event.has_finished and usercount %}

 Join a project or challenge to be listed here

As {{ usercount }} have done in this event already

{% elif not usercount %}

😥 No matches - encourage everyone to create a profile and join a team.

{% else %}
{{ usercount }} users are here
{% endif %}
{% if current_event %}
{{ current_event.name }}
{% endif %} {% endblock %}