Hello,

normally you could render a simple formset like this:

{% for form in formset.forms %}
  {% for field in form %}
    {{ field }}
  {% endfor %}
{% endfor %}

Now my problem is, that I can't use the second for loop since I need
direct access to every single formfield. This is because my formating
needs are quite complex. I've looked through the documentation but
either I'm blind or it's really not in there:
How can I make a single field render itself as it's widget??? In the
documentation there's allways only described how you'd do this using
print. (print my_form['my_field_name']).

So I transferred this into the template like this:

{% for form in formset.forms %}
  {{ form.fields.my_field_name }}
{% endfor %}

Which does only print the class name but not the HTML representation.
If I could call the fields unicode function I'd be done. But I don't
know how to do this within the template. And I think I shouldn't do
this anyway.

So HOW can I render one specific form field as HTML?

Dennis
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to