Thanks very much for these responses, they've given me something to
think about.

However, assuming I'm going about things the right way, the problem
appears with the loading of Model data into a Form object which can be
passed to a FormTools.preview class.

For example, in the view function view_post() I thought I'd to have
something like this

view.py
        def view_post(request, post_id)

                post_obj = get_object_or_404(Post, pk=post_id)

                post_form = PostForm(instance=post_obj) # PostForm being a
models.ModelForm

then having something like

        return PostFormPreview(post_form)

forms.py

class PostForm(models.ModelForm):
        title=fields.CharField(required=False)
        body=fields.TextField(required=True)

        def save():
                ...
class PostFormPreview(preview.FormPreview):

        def parse_params(self, *args, **kwargs):
                ...

        def done(self, request, cleaned_data):
                # The Save() process begins here

But this is were my problems begin.  Amongst the comments of formtools/
preview.py:-

        class FormPreview(object):
                preview_template = 'formtools/preview.html'
                form_template = 'formtools/form.html'

                # METHODS SUBCLASSES SHOULDN'T OVERRIDE
###################################

                def __init__(self, form):
                        # form should be a Form class, not an instance.


"form should be a Form class, not an instance."

Additionally, in the view_post function in view.py, by returning
PostFormPreview causes the following error:-

        AttributeError: 'PostFormPreview' object has no attribute
'status_code'

If I remove the "return" from the view_post, django complains
view_post didn't return a HttpResponse object.





On Jul 8, 4:05 pm, "Milan Andric" <[EMAIL PROTECTED]> wrote:
> On Tue, Jul 8, 2008 at 10:00 AM, Milan Andric <[EMAIL PROTECTED]> wrote:
> > On Mon, Jul 7, 2008 at 6:22 AM, d-rave <[EMAIL PROTECTED]> wrote:
>
> >> Has anyone successfully got formtools.preview working with
> >> forms.ModelForm so that the form fields are populated from the model.
>
> >> If so, do you have an example??
>
> > Dave, I'm not familiar with formtools but if all you want to do is
> > prepopulate a form then you can use the initial={} keyword arg.  This
> > probably doesn't help but ... you could do this in your view if you
> > want:
>
> > form = Form(initial={'user':u, ...})
>
> >http://www.djangoproject.com/documentation/newforms/#dynamic-initial-...
>
> Another trick is to use model_to_dict to pass in initial values :
>
> from django.newforms.models import model_to_dict
> ...
>  f = Form( initial=model_to_dict(obj) )
>
> --
> Milan
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to