On Thu, 2008-07-10 at 19:08 -0700, James Beard wrote:
> 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?

Add a method to your form that returns a list (or iterator over a
sequence) of tuples or lists containing all the information you need for
each row. You'll have to tell your form about the model and messages,
but that isn't so odd, since it already needs to know some of that in
order to generate the right number of fields.

So, for example, this method might return a list of tuples like
(BoundField instance, message_sender, message_title). You loop over this
list:

        {% for field,sender,title in form.get_data %}
           {{ field }} | {{ sender }} | {{ title }}
        {% endfor %}
        
Regards,
Malcolm



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

Reply via email to