Re: Class-based FormView Contact Form

2011-09-12 Thread Paul Walsh
Hi Russ, Thanks for the input. I am actually looking to use FormView as opposed to UpdateView or CreateView because I am not working with model data at all: I want to create a simple contact form, and send the data of the form to a recipient via email - I don't want to write anything to the db

Re: Class-based FormView Contact Form

2011-09-05 Thread Russell Keith-Magee
On Mon, Sep 5, 2011 at 6:17 PM, Paul Walsh wrote: > Anyone? > I really want to use class-based views, but it is hard with so much missing > in terms of examples/tutorials. Hi Paul, First off, apologies for the current state of the Class-based views documentation. It's one of the known weak point

Re: Class-based FormView Contact Form

2011-09-05 Thread Paul Walsh
Anyone? I really want to use class-based views, but it is hard with so much missing in terms of examples/tutorials. thx. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg

Class-based FormView Contact Form

2011-09-01 Thread Paul Walsh
I want to make a contact form using the class-based FormView. How do I pass the recipient email? Let's say I want a pre-defined recipient, and also the option for the sender of the form to receive a copy. I can do this with a function view but I'd like to use the new class-based generic views