2

我需要跟踪创建标签的时间和人员,因此像这样使用 django-taggit 创建了自定义标签模型

class Topics(TagBase):
    featured = models.BooleanField(_('Featured'), default=False)

    created = models.DateTimeField(_('Creation date'), auto_now_add=True, editable=False)
    created_by = models.ForeignKey(User, related_name="topic_created_by")


class ArticleTopic(ItemBase):
    content_object = models.ForeignKey('Article')
    tag = models.ForeignKey(Topics, related_name="topic_items")


class Article(models.Model):   
    title = models.CharField(_('Title'), max_length=255)

    excerpt = models.TextField(_('Excerpt'))
    content = models.TextField(_('Content'), blank=True)

    topics = TaggableManager(through=ArticleTopic)

    created = models.DateTimeField(_('Creation date'), auto_now_add=True, editable=False)
    created_by = models.ForeignKey(User, related_name="article_created_by")

我正在使用 django-autocomplete-light 在管理员中为主题创建一个自动完成字段,并在保存文章表单时输入一个新主题创建它。

虽然我知道我可以在管理表单中获取 request.user 并通过 save_model 方法传递它——这是我为 Article 模型所做的——但我不知道如何为 Topics 模型这样做。

提前致谢

4

1 回答 1

2

我遇到了类似的问题并分叉了 django-taggit 以添加此功能:https ://github.com/professorplumb/django-taggit

您可以为自定义 through 或 tag 模型添加属性,如下所示:

article.topics.add('topic1', 'topic2', created_by=request.user)
于 2014-03-11T06:49:41.867 回答