On Tue, Aug 11, 2009 at 7:49 PM, Chris Curvey <ccur...@gmail.com> wrote:
> > So, is there a way for me to get a form field out of a form from > within the templating language? I'd like to do something like this: > > {% for field_name in field_names %} > <tr> > <td>{{ field_name }}</td> > {% for form in formset %} > <td>{{ form[field_name] %} </td> > {% endfor %} > </tr> > {% endfor %} > > But this does not work -- Django chokes at the opening "[" with a > syntax error. > You're trying to use Python syntax in the template. Templates are not Python. Recall dictionary lookup in templates (what you look to be trying) is one of the things done by dot in a template: http://docs.djangoproject.com/en/dev/topics/templates/#variables Also you probably want to review this doc: http://docs.djangoproject.com/en/dev/topics/forms/#looping-over-the-form-s-fields for some examples of how to loop over the fields in a form (and what all you can access/display for a field) in a template. Also this: http://docs.djangoproject.com/en/dev/topics/forms/formsets/#using-a-formset-in-views-and-templates for some formset-specific info. Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---