{% extends 'base.html' %} {% block title %} Send Accomodation Confirmation {% endblock %} {% block content %}
Dear so and so,

Your request for accomodation during Sage Days 25, India has been approved.
message:
Not Selected ppl: {{not_selected.count}}
{% for m in not_selected %} {% endfor %}
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}}

Rejected Ppl: {{rejected.count}}
{% for m in rejected %} {% endfor %}
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}}


Selected Ppl: {{selected_confirmed.count}}
{% for m in selected %} {% 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}} {% if m.participantinfo_set.all.0.sprinted_already %} True {% else %} False {% endif %}
{% endblock %}