# HG changeset patch # User nishanth # Date 1280155297 -19800 # Node ID a88fe014f9eb7bc442fbe8cfeb679b260d4cf88e # Parent 3ab058807ef6a741bc94870732dd0017f25a9e37 fixed a small typo diff -r 3ab058807ef6 -r a88fe014f9eb sdi/views.py --- a/sdi/views.py Mon Jul 26 20:09:10 2010 +0530 +++ b/sdi/views.py Mon Jul 26 20:11:37 2010 +0530 @@ -183,7 +183,7 @@ not_selected_ppl = Registrant.objects.filter(registrantinfo__status_of_attending_sagedays ="3", registrantinfo__status_of_accomodation="1") - user_choices = list(selected_ppl) + list(not_selected_ppl) + user_choices = list(rejected_ppl) + list(not_selected_ppl) form = SendAccoForm(user_choices, request.POST) if request.method == "POST" and form.is_valid():