i am using django tagging. can anyone give any example as to how can i show the related tags, when the object related to a particular tag is displayed? Something like similar tags in stackoverflow.
Thank you!
i am using django tagging. can anyone give any example as to how can i show the related tags, when the object related to a particular tag is displayed? Something like similar tags in stackoverflow.
Thank you!
You can use the get_related manager which will:
To use this you could create a template tag such as:
Edit for comment
to get a list of similar tags you can use related_for_model, which will return "other tags used by items which have all the given tags"