> in urls.py > > from django.conf.urls.defaults import * > from cases.todo.models import * > from django.newforms import form_for_model > from django.contrib.formtools.preview import FormPreview > > class MyForm(FormPreview): > def done(request, cleaned_data): > return HttpResponseRedirect('/') > > ContactForm=form_for_model(Contact) > c=ContactForm(Contact.objects.get(id=1).__dict__) > > urlpatterns = patterns('', > (r'^post/$', MyForm(c)), > (r'^admin/', include('django.contrib.admin.urls')), > ) >
You don't use form_for_model in that way. Form_for_model is for a blank (i.e., create new object) form. If you want the fields filled in from existing data (i.e., edit object page), you'd use form_for_instance. Usage is in the newforms documentation. Hope that helps some. Chase --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---