Bram de Jong - MTG wrote: > Right now I do: > > def post_comment(request, blog_id): > [snip] > > blog_post = BlogPost.objects.get(id__exact=blog_id) # from URL > > # If data was POSTed, we're trying to create a new Comment. > new_data = request.POST.copy() > > # load up the blog id > new_data['blog_post'] = blog_id > > # Check for errors. > errors = manipulator.get_validation_errors(new_data) > > if not errors: > # No errors. This means we can save the data! > manipulator.do_html2python(new_data) > new_comment = manipulator.save(new_data) > > [snip] > > But this seems a bit dodgy Well, as far as I know this is how thing are supposed to work with manipulators: either you should provide data yourself or from the form.
To make it more "robust" you can create your own manipulator that will do this logic. This will keep your views more clean. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---