Re: working example of django.contrib.localflavor ?

2008-04-15 Thread Karen Tracey
On Tue, Apr 15, 2008 at 2:19 PM, e <[EMAIL PROTECTED]> wrote: > Is this worthy of submitting a ticket to fix the documentation for? I'd say so. Near as I can tell if you cut & paste the example from the documentation it doesn't work. That seems wrong, and worth fixing. Karen > > On Apr 14,

Re: working example of django.contrib.localflavor ?

2008-04-15 Thread e
Is this worthy of submitting a ticket to fix the documentation for? On Apr 14, 2:10 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Mon, Apr 14, 2008 at 11:58 AM, e <[EMAIL PROTECTED]> wrote: > > > I have a form set up and all working, its basically straight out of > > the Form Processing chap

Re: working example of django.contrib.localflavor ?

2008-04-14 Thread Karen Tracey
On Mon, Apr 14, 2008 at 11:58 AM, e <[EMAIL PROTECTED]> wrote: > > I have a form set up and all working, its basically straight out of > the Form Processing chapter of the django book: > > class ContactForm(forms.Form): >email = forms.EmailField(required=True) >message = forms.CharField()

working example of django.contrib.localflavor ?

2008-04-14 Thread e
I have a form set up and all working, its basically straight out of the Form Processing chapter of the django book: class ContactForm(forms.Form): email = forms.EmailField(required=True) message = forms.CharField() phone_number = forms.CharField() def contact(request): form = Con