(I know I can't simply _NEST_ {{}}'s in a template, but I'm using it as pseudosyntax to help express what I'm _trying_ to do.)
Is there any way, in a template, to get an attribute of an object when the NAME of that attribute is dynamic (i.e. in/from another object)? What I really want is: {{ obj1.{{ obj2.attname }} }} {# NOPE #} or somewhat Pythonese: {{ obj1.__getattr__( {{ obj2.attname }} ) }} {# NOPE #} I thought I could be tricky and write a filter called "getattrbyname" that would return only the specified attribute of the object... ...but that won't work either, because I'm not sure how to get the name parameter to it from the template. {{ obj1|getattrbyname:"{{ obj2.attname }}" }} {# NOPE #} Is there another approach that would actually WORK? (Note: This is kind of an "overzealous novice" question, so don't rule out the possibility that I totally overlooked some obvious solution. =) If you're wondering how I came up with such a goofy request: My application is displaying a table with information about a "key" in each row. I thought it would be cool to extend the table-header-sorting capability (djangosnippet #308), to make headers() return the order_criterion as 'columnname' in each entry. Then I could reuse the same template for lots of different subsets of the same table, simply by changing the set of headers I pass in. (Because sometimes I want the table to contain more or less detail about each "key") Like so: <table class="keylist"> <thead> {% for header in headers %} {% if header.sortable %} <th {{ header.class_attr }}><a href="{{ header.url }}">{{ header.text|escape }}</a></th> {% else %} {# !header.sortable #} <th>{{ header.text|escape }}</th> {% endif %} {# header.sortable #} {% endfor %} {# headers #} </thead> <tbody> {% for key in keylist %} <tr> {% for header in headers %} <td> {# NOPE, THIS DOESN'T WORK! #} {{ key.{{ header.columnname }}|escape }} {# NOPE #} </td> {% endfor %} {# headers #} </tr> {% endfor %} {# keylist #} </tbody> </table> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---