# HG changeset patch # User nishanth # Date 1279712981 -19800 # Node ID c688c24392bf01a1cefe9f7b04a97e3285c2836d # Parent 5cd25b1093ad8f1e9e8a55fda997555795f7fb1e fixed another typo diff -r 5cd25b1093ad -r c688c24392bf sdi/views.py --- a/sdi/views.py Wed Jul 21 17:18:30 2010 +0530 +++ b/sdi/views.py Wed Jul 21 17:19:41 2010 +0530 @@ -172,7 +172,7 @@ selected_confirmed_ppl = Registrant.objects.filter(registrantinfo__status_of_attending_sagedays ="3", registrantinfo__status_of_accomodation="3") not_selected_ppl = Registrant.objects.filter(registrantinfo__status_of_attending_sagedays ="3", - registrantinfo__status_of_accomodation="4") + registrantinfo__status_of_accomodation="1") user_choices = list(rejected_ppl) + list(selected_not_confirmed_ppl) + list(not_selected_ppl) form = UserSelectForm(user_choices, request.POST)