{% extends 'base.html' %} {% block title %} Send Event Participation Confirmation {% endblock %} {% block content %}
Not Selected ppl: {{not_selected.count}}
{% for m in not_selected %} {% endfor %}
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}}

Selected but not Confirmed Ppl: {{not_confirmed.count}}
{% for m in not_confirmed %} {% endfor %}
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}}


Attending Ppl: {{attending.count}}
{% for m in attending %} {% endfor %}
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}} {% if m.participantinfo_set.all.0.has_laptop_for_sagedays %} True {% else %} False {% endif %} {{m.participantinfo_set.all.0.will_sprint}}
{% endblock %}