Re: Extremely simple question that I can't get a simple answer for in Docs

2010-05-19 Thread steve
That was it, Tom, thanks On May 19, 9:43 am, Tom Evans wrote: > On Wed, May 19, 2010 at 5:37 PM, pyfreak wrote: > > I was on this page, but I went directly to the "1.1" link in that > > first sentence because I am using 1.1 actually > > > This page is for the development version. > > > Thanks th

Re: Extremely simple question that I can't get a simple answer for in Docs

2010-05-19 Thread Iván Raskovsky
On Wed, May 19, 2010 at 1:23 PM, pyfreak wrote: > I tried placing my form in the template like {{ f['subject'] }} and I > get TemplateSyntaxError. Of course using my own form and existing > fields > Another important point is how to display the contents for a key in a dictionary in a template (

Re: Extremely simple question that I can't get a simple answer for in Docs

2010-05-19 Thread Daniel Roseman
On May 19, 5:37 pm, pyfreak wrote: > I was on this page, but I went directly to the "1.1" link in that > first sentence because I am using 1.1 actually > > This page is for the development version. > > Thanks though. > I don't know why you think that makes any difference here. In any case, your q

Re: Extremely simple question that I can't get a simple answer for in Docs

2010-05-19 Thread Tom Evans
On Wed, May 19, 2010 at 5:37 PM, pyfreak wrote: > I was on this page, but I went directly to the "1.1" link in that > first sentence because I am using 1.1 actually > > This page is for the development version. > > Thanks though. > The same information is in the 1.1 manual: http://docs.djangopro

Re: Extremely simple question that I can't get a simple answer for in Docs

2010-05-19 Thread pyfreak
I was on this page, but I went directly to the "1.1" link in that first sentence because I am using 1.1 actually This page is for the development version. Thanks though. On May 19, 9:29 am, Nuno Maltez wrote: > I think you need the google search help list :-) > > Just type "django forms" in the

Re: Extremely simple question that I can't get a simple answer for in Docs

2010-05-19 Thread Nuno Maltez
I think you need the google search help list :-) Just type "django forms" in the search box at docs.djangoproject.com And in the first result you have a lot of examples on how to print everything from a form in your template: http://docs.djangoproject.com/en/dev/topics/forms/ On Wed, May 19, 201

Extremely simple question that I can't get a simple answer for in Docs

2010-05-19 Thread pyfreak
Frustratingly enough, docs.djangoproject.com tells you how to print out the HMTL for a single field in your form, but it uses a shell to demonstrate it: f = ContactForm() >>> print f['subject'] >>> print f['message'] However, I need to know how to do this in a template I tried placing my f