{% 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 people: {{not_selected.count}}
{% for m in not_selected %} {% endfor %}
Select Name Sex Profession Organization Laptop Will sprint Already sprinted Allotment
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}} {% if m.participantinfo_set.get.has_laptop_for_sagedays %} Yes {% else %} No {% endif %} {% if m.participantinfo_set.get.will_sprint == '1' %} No {% else %}{% if m.participantinfo_set.get.will_sprint == '2' %} May be {% else %} Yes {% endif %}{% endif %} {% if m.participantinfo_set.get.sprinted_already %} Yes {% else %} No {% endif %} {% if m.registrantinfo_set.get.acco_location == '0' %} IITB Hostel {% else %}{% if m.registrantinfo_set.get.acco_location == '1' %} IITB Guest House {% else %}{% if m.registrantinfo_set.get.acco_location == '2' %} NITIE {% else %} Not alloted {% endif %}{% endif %}{% endif %}

Rejected People: {{rejected.count}}
{% for m in rejected %} {% endfor %}
Name Sex Profession Organization Laptop Will sprint Already sprinted Allotment
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}} {% if m.participantinfo_set.get.has_laptop_for_sagedays %} Yes {% else %} No {% endif %} {% if m.participantinfo_set.get.will_sprint == '1' %} No {% else %}{% if m.participantinfo_set.get.will_sprint == '2' %} May be {% else %} Yes {% endif %}{% endif %} {% if m.participantinfo_set.get.sprinted_already %} Yes {% else %} No {% endif %} {% if m.registrantinfo_set.get.acco_location == '0' %} IITB Hostel {% else %}{% if m.registrantinfo_set.get.acco_location == '1' %} IITB Guest House {% else %}{% if m.registrantinfo_set.get.acco_location == '2' %} NITIE {% else %} Not alloted {% endif %}{% endif %}{% endif %}


Selected People: {{selected_confirmed.count}}
{% for m in selected %} {% endfor %}
Name Sex Profession Organization Laptop Will sprint Already sprinted Allotment
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}} {% if m.participantinfo_set.get.has_laptop_for_sagedays %} Yes {% else %} No {% endif %} {% if m.participantinfo_set.get.will_sprint == '1' %} No {% else %}{% if m.participantinfo_set.get.will_sprint == '2' %} May be {% else %} Yes {% endif %}{% endif %} {% if m.participantinfo_set.get.sprinted_already %} Yes {% else %} No {% endif %} {% if m.registrantinfo_set.get.acco_location == '0' %} IITB Hostel {% else %}{% if m.registrantinfo_set.get.acco_location == '1' %} IITB Guest House {% else %}{% if m.registrantinfo_set.get.acco_location == '2' %} NITIE {% else %} Not alloted {% endif %}{% endif %}{% endif %}
{% endblock %}