diff -r ac5a1c60c2bc -r bffb109e23c1 project/kiwipycon/talk/views.py --- a/project/kiwipycon/talk/views.py Thu Nov 05 03:01:40 2009 +0530 +++ b/project/kiwipycon/talk/views.py Thu Nov 05 03:19:10 2009 +0530 @@ -150,14 +150,15 @@ contact = talk_form.data.get('contact'), title = talk_form.data.get('title'), abstract = talk_form.data.get('abstract'), - outline = talk_form.data.get('outline'), +# outline = talk_form.data.get('outline'), topic = talk_form.data.get('topic'), - topic_other = talk_form.data.get('topic_other'), +# topic_other = talk_form.data.get('topic_other'), duration = talk_form.data.get('duration'), audience = talk_form.data.get('audience'), - audience_other = talk_form.data.get('audience_other'), +# audience_other = talk_form.data.get('audience_other'), approved = False, - tags = talk_form.data.get('tags')) +# tags = talk_form.data.get('tags') + ) talk.save() # Saved, ... redirect back to account redirect_to = reverse('kiwipycon_account')