Alfredo Alessandrini 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?? > Because you have no action when request.method != "POST", and so the view is returning None.
regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.com/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---