sdi/views.py
branchanoop
changeset 111 45f844723b7a
parent 110 01b5184402c8
child 112 3cf5f668fca5
equal deleted inserted replaced
110:01b5184402c8 111:45f844723b7a
   138     form = UserSelectForm(user_choices, request.POST)
   138     form = UserSelectForm(user_choices, request.POST)
   139 
   139 
   140     if request.method == "POST" and form.is_valid():
   140     if request.method == "POST" and form.is_valid():
   141         pass
   141         pass
   142     else:
   142     else:
   143         render_to_response("send_sgd_cnf.html", {"attending":attending_ppl, 
   143         return render_to_response("send_sgd_cnf.html", {"attending":attending_ppl, 
   144                                                 "not_confirmed":not_confirmed_ppl,
   144                                                 "not_confirmed":not_confirmed_ppl,
   145                                                 "not_selected":not_selected_ppl,
   145                                                 "not_selected":not_selected_ppl,
   146                                                })
   146                                                })
   147 
   147 
   148 
   148