On 12/4/06, matthew <[EMAIL PROTECTED]> wrote:
> This is the bit that's not working (viewsurvey.html):
> {% for question in questions %}
>     {% include 'questions/' + question.get_type_display() + '.html' %}
> {% endfor %}
>
> Why can't I concatenate the strings and variable to include the
> relevant template?

The Django template language does not support arbitrary Python
expressions; only the tags and syntax defined in the template
documentation are allowed. Your best bet here is probably to write a
template tag (the inclusion_tag shortcut is probably exactly the sort
of thing you want here).

-- 
"May the forces of evil become confused on the way to your house."
  -- George Carlin

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