diff -r 2f01af211af9 -r c7c5c727a483 templates/send_wsp_cnf.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/send_wsp_cnf.html Thu Jul 22 19:50:36 2010 +0530 @@ -0,0 +1,56 @@ +{% extends 'base.html' %} +{% block title %} +Send Workshop 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.registrantinfo_set.all.0.has_laptop_for_workshop %} +True +{% else %} +False +{% endif %} +
+ +{% endblock %} +