On Oct 14, 5:37 pm, "Alfredo Alessandrini" <[EMAIL PROTECTED]> wrote: > I've setup a form from a model: > > class PlayerForm(ModelForm): > class Meta: > model = Player > > I've setup a view function for save the data inserted in the form: > > def setup_player(request): > if request.method == 'POST': > form = PlayerForm(request.POST) > if form.is_valid(): > form.save() > return HttpResponseRedirect(form_successfully) > else: > form = PlayerForm() > return render_to_response('player_form.html', {'form': form}) > > But I've this error: > > ValueError: The view mysite.views.setup_player didn't return an > HttpResponse object. > > why?? > > Thanks in advance, > > Alfredo
The final line, return render_to_response, is indented so that it comes inside the initial if request.method=='POST'. This means that if it's not a POST - as it won't be when the user initial requests the page - nothing is returned. The simple solution is to move that final line back four spaces, so it is always executed. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---