natebeaty wrote:
I'd like to throw this in as extra_context along the lines of:

"tag_list" : Tag.objects.filter(this_is_where_my_brain_is_shorting)

This is in fact pretty standard Django ORM, nothing special to TagsField:

    blog.tag_set.all()

(assuming blog is an instance of Blog). You can also filter it as you wanted going from Tag models:

    Tag.objects.filter(blog__pk=blog.id)

... but this feels to me somewhat backwards.

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