我使用Django 标记项目。
那是一个非常稳定的项目。在 django 1.3 上工作。
但我有一个问题。
# in models.py
from tagging.fields import TagField
class Blog(models.Model):
title = models.CharField(max_length = 300)
content = models.TextField()
tags = TagField()
author = models.ForeignKey(User)
# in views.py
def blog_list(request):
# I Want to use select related with tags
blogs = Blog.objects.all().select_related("user", "tags") # ????
....
# in Templates
{% load tagging_tags %}
{% for blog in blogs %}
{% tags_for_object blog as tags %}
{{blog.title}}
{% for tag in tags %}
<a href="{% url tag_detail tag_id=tag.pk %}">{{tag}}</a>
{% endfor %}
{% endfor %}