diff -r 86bfdb64edb5 -r 55f338569133 templates/send_acco_cnf.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/send_acco_cnf.html Wed Jul 21 17:16:50 2010 +0530 @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% block title %} +Send Accomodation 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: {{selected_not_confirmed.count}}
+ +{% for m in selected_not_confirmed %} + + + + + + + +{% 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 and confirmed Ppl: {{selected_confirmed.count}}
+ +{% for m in selected_confirmed %} + + + + + + +{% endfor %} +
{{m}} {{m.gender}} {{m.profession}} {{m.affiliated_to}}
+ +{% endblock %} +