{% extends "main/base.html" %} {% block title %}Staff | Jams | Participants{% endblock %} {% block og_title %}Staff | Jams | Participants{% endblock %} {% block og_description %}Listing of participant applications and their status{% endblock %} {% block content %} {% macro card_header(app) %}

{{ app.username }}#{{ app.discriminator }}

{% if jam.state in ["announced", "preparing"] %} {% if app.approved %} {% else %} {% endif %} {% endif %}
{% endmacro %}

Code Jam {{ jam.number }}: Participants

 Back

{% for app in jam.participants %}
{% endfor %}
{% endblock %}