Форма django повторно отправляется после обновления

После того, как я отправляю форму в первый раз, а затем обновляю форму, она отправляется повторно, и я не хочу это.

Вот моя форма в шаблоне:

<form action = "" method = "POST"> {% csrf_token %}
    {{ form.as_p }}
    <input type = "submit" value = "Shout!"/>
</form>

Как я могу это исправить?

Вот мои взгляды:

def index(request):
    shouts = Shout.objects.all()

    if request.method == "POST":
        form = GuestBookForm(request.POST)
        if form.is_valid():
            cd = form.cleaned_data
            shout = Shout(author = cd['author'], message = cd['message'])
            shout.save()
            form = GuestBookForm()
    else:
        form = GuestBookForm()

    return render_to_response('guestbook/index.html', {'shouts' : shouts,
                                             'form' : form },
                              context_instance = RequestContext(request))
24
задан Marijus 28 April 2011 в 19:03
поделиться