{% extends "layout.html" %} {% import "macros/_misc.html" as misc %} {% block page_title %}Participants{% endblock %} {% block body_class %}eventusers{% endblock %} {% block content %} {% if current_user and current_user.is_authenticated %}
{{ current_user.username }} My Story
{% endif %}

{% if u %}`{{ u }}` {% else %}Contributors {% endif %}

{% if preset_roles %}
{% for role in preset_roles %} {{ role.name }} {% endfor %}
{% endif %} {% if participants %}
{% for user in participants %} {{ misc.render_user_profile(user) }} {% endfor %}
{% endif %}
{% if not usercount %}
🤷‍♀️ Encourage people to choose a role and join a team.
{% else %}
{{ usercount }} {% if u %}match{% endif %}
{% endif %} {% if current_event %} Directory {% if current_event.has_started and not current_event.has_finished %}

Remember to join a project that you are working on.

{% endif %} {% endif %}
{% if current_event %}
{{ current_event.name }}
{% endif %} {% endblock %}