dlamotte / django-tagging

Automatically exported from code.google.com/p/django-tagging
Other
0 stars 0 forks source link

Get TemplateSyntaxError("Caught an exception while rendering: tagging_taggeditem") when {% for item in set %} on set = TaggedItem.objects.get_by_model(Model,'tag') #218

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
When i have a template with:

{% for image in images %} 
   <img src="{{ image.url }}"/>
{% endfor %}

When images is defined in context as context['images'] =
TaggedItem.objects.get_by_model(Model,'tag')

I get TemplateSyntaxError("Caught an exception while rendering:
tagging_taggeditem")

Original issue reported on code.google.com by curtis.r...@gmail.com on 29 Sep 2009 at 10:38