On Fri, 2008-11-21 at 12:06 -0800, Andy Young wrote:
> I'm looking for an elegant way of stepping through my models from
> within my template tags.
> 
> I have 3 model classes chained by many-to-many relationships, viz
> Category --> Item --> Detail.  This model pertains to resume data,
> e.g., Category='Education', Item='Univ1', Detail='Biology
> coursework'.  Each model class has various subfields which I would
> like to display on the final resume page.
> 
> I have tried various approaches involving {% for %} loops, and each
> has resulted in failure.  Each of my attempts requires using a
> variable name as a model's attribute lookup.  Unfortunately, it seem
> the Django templating language attempts to access the variable's name,
> not its value.

It is deliberate that Django's template language doesn't support
indirect attribute lookup. Helps to keep things simple (part of the
"keep programming out of templates" design goal). However, that's just
the goal of Django's core. You can easily write a template tag or a
filter to do this (I believe somebody already has something similar on
djangosnippets, but I don't have any link to it, since I never have a
need to do this).

An alternate approach is to write a template tag that takes the list of
field names as an argument (perhaps takes a variable containing the list
of field names) and then returns the list of values you want. So you
could write something like

        {% get_fields c fields as my_values %}
        {% for value in my_values %}
           ...
        {% endfor %}
        
Here, I'm making up an API where the tag puts the result in the
my_values variable, so that you can subsequently loop over it. You could
store the values there, or a list of (name, value) pairs, or make it a
dictionary; whatever, you like.

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