nobiiru 09.04.2012 07:10 /airbase

Господа, возникли грабли.
Есть такой быдлокод:
---cut here---
def ShowPostForm(request):
if request.method == 'POST':
form = PostForm(request.POST, request.FILES)
if form.is_valid():
author_name = form.cleaned_data['author_name']
author_email = form.cleaned_data['author_email']
post_subject = form.cleaned_data['post_subject']
post_body = form.cleaned_data['post_body']
p = Post(author_name=author_name, author_email=author_email, post_subject=post_subject, post_body=post_body)
p.save()
form.save()
return HttpResponseRedirect('')
---cut here---
Почему джва раза происходит сохранение в БД? Форма охуела?

1. nobiiru 09.04.2012 07:11 /airbase

Там у меня еще сохраняется файл из ImageField.

2. werehuman 09.04.2012 07:12 Psi+

http://pastebin.com

3. nyalol 09.04.2012 07:39

вебуебки ненужны

4. 238328 09.04.2012 16:20

-.-

Do you really want to delete ?