{% extends public|yesno:"nomcom/nomcom_public_base.html,nomcom/nomcom_private_base.html" %} {# Copyright The IETF Trust 2021, All Rights Reserved #} {% load origin %} {% load bootstrap3 %} {% load static %} {% block subtitle %} - Volunteers{% endblock %} {% block pagehead %} {% endblock %} {% block nomcom_content %} {% origin %}

Volunteers for {{ nomcom.group }}

{% regroup volunteers by eligible as volunteers_by_eligibility %} {% for eligibility_group in volunteers_by_eligibility %}
{{ eligibility_group.grouper|yesno:"Eligible, Not Eligible"}}
{% for v in eligibility_group.list %} {% endfor %}
Last Name First Name Affiliation Primary Email Address Qualifications
{{ forloop.counter }} {{v.person.last_name}} {{v.person.first_name}} {{v.affiliation}} {{v.person.email}} {{v.qualifications}}
{% endfor %} {% endblock nomcom_content %} {% block js %} {% endblock %}