equal
deleted
inserted
replaced
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 |