Hi all. I have a HTML table of data that I'd like to be able to select multiple rows of and perform some sort of group action. Think "Select all" then "Mark as read" in gmail.
So, in the view I can get a list of model objects (e.g. mail messages), and dynamically add a checkbox field to the form for each object. Pass the form and list of messages to the view. No probs. Where I'm coming unstuck is trying to marry them back together in the template. Easy enough to loop through the form fields, but then each time through the loop how should I get the values for the other columns from the model objects? Below is roughly what I want to do, but the template will only let me look up "field.name" rather than the value of field.name. {% for field in form %} {{ field }} | {{ messages[field.name].from }} | ... {% endfor %} Any hints or recipes on how best to approach this? Thanks James --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---