{% extends 'admin/__base__.html' %} {% block title %} Participant {% endblock %} {% block head %} {{ super() }} {% endblock %} {% block sidebar %} {% from 'admin/macros.html' import generate_sidebar %} {{ generate_sidebar('Participant') }} {% endblock %} {% block main %}
{% if participants %}
{% for participant in participants %} {% endfor %}
First Name Last Name Email Link
{{ participant.fname }} {{ participant.lname }} {{ participant.email }}
{% else %}

No participants

{% endif %}
{% endblock %} {% block script %} {% if participants %} {% endif %} {{ super() }} {% endblock %}