Re: Outputting individual fields of a Model form

2008-01-26 Thread James Bennett
On Jan 26, 2008 7:35 PM, almostvindiesel <[EMAIL PROTECTED]> wrote: > I figured {{ form['recipe_name'] }} or > {{ unicode(form['recipe_name']) }} should work per the documentation > here: http://www.djangoproject.com/documentation/newforms/, but doing > so returns the following error within the te

Re: Outputting individual fields of a Model form

2008-01-26 Thread Jonathan Buchanan
almostvindiesel wrote: > I have a ModelForm called RecipeForm built from a Recipe model. > > In the template, I'd like to output the individual components of the > form. Writing {{ form.as_table }} successfully renders the entire > form, however, I just want to output individual fields. > > I f