Re: Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-23 Thread Alex Gaynor
Danny, I think you meant that for a different thread. Alex On Mon, Oct 24, 2011 at 1:36 AM, Daniel Greenfeld wrote: > One of the things that I think would be wonderful is to see this and other > issues such as server specific settings actually described in a Django best >

Re: Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-23 Thread Daniel Greenfeld
One of the things that I think would be wonderful is to see this and other issues such as server specific settings actually described in a Django best practices document. And not as part of the wiki. -- You received this message because you are subscribed to the Google Groups "Django

Re: Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-23 Thread Russell Keith-Magee
On Sun, Oct 23, 2011 at 10:48 AM, Carl Meyer wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 >> The official Django Docs for forms offers up the following pattern for >> Form view code: >> >>     def contact(request): >>         if request.method == 'POST': # If the

Re: Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-22 Thread Carl Meyer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Victor, On 10/22/2011 06:57 PM, Victor Hooi wrote: > /Disclaimer: This is about the the Django Docs, and a possible > suggestion for it - apologies if this isn't the correct group (but I > didn't think it quite fell into django-users). No

Django Docs for Forms - Alternative Pattern from Advanced Django Forms Usage talk?

2011-10-22 Thread Victor Hooi
heya, *Disclaimer: This is about the the Django Docs, and a possible suggestion for it - apologies if this isn't the correct group (but I didn't think it quite fell into django-users). * The official Django Docs for forms offers up the following pattern for Form view code: def