In the topics forms documentation there's an example of using a form
in a view which shows a return statement using a render_to_respone
shortcut like this:

return render_to_response('contact.html', {
     'form': form,
})

but in the shortcuts documentation it shows an example of using
render_to_response not using forms and coded like this:

return render_to_response('my_template.html',
                                       my_data_dictionary,
 
context_instance=RequestContect(request))

So if I want to use a form when coding a view how do I merge or
reconcile these two different examples so that my render_to_repsonse
will work properly? Please advise. Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to