# HG changeset patch # User nishanth # Date 1279305138 -19800 # Node ID c03a2b66ea097627bf7a6876594c106bcc0020c0 # Parent aa5c29984e8499decde81f98ca769e7d6ddfc96d fixed a bug diff -r aa5c29984e84 -r c03a2b66ea09 sdi/views.py --- a/sdi/views.py Sat Jul 17 00:00:31 2010 +0530 +++ b/sdi/views.py Sat Jul 17 00:02:18 2010 +0530 @@ -134,7 +134,7 @@ not_confirmed_ppl = Registrant.objects.filter(need_for_python_workshop=True, registrantinfo__status_of_attending_sagedays ="2") not_selected_ppl = Registrant.objects.filter(need_for_python_workshop=True, registrantinfo__status_of_attending_sagedays ="1") - user_choices = list(not_attending_ppl) + list(not_confirmed_ppl) + user_choices = list(not_selected_ppl) + list(not_confirmed_ppl) form = UserSelectForm(user_choices, request.POST) if request.method == "POST" and form.is_valid():