如何在 django 中管理评论标志

发布于 2024-11-27 16:55:10 字数 175 浏览 1 评论 0原文

我启用了 django 的评论框架,并且设置了标记 url:

comments/flag/{{comment.id}}/

评论已注册,并出现在数据库中。但是,它们没有出现在管理界面中。理想的情况是在管理界面中添加评论“标记”状态的过滤器,但我不确定具体如何执行此操作。

I have django's comment framework enabled, and I have flagging urls set up:

comments/flag/{{comment.id}}/

The comments are registered, and appear in the database. However, they are not appearing in the admin interface. What would be ideal would be to add the filter for the comment 'flagged' status in the admin interface, but am not sure exactly how to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

茶底世界 2024-12-04 16:55:10

当我发现你的问题时,我正在寻找解决这个问题的方法。

我使用了 Django - 扩展另一个应用程序 ModelAdmin? 中的一些提示,

我创建了一个 admin.py主应用程序目录中的文件。内容如下:

from django.contrib import admin
from django.contrib.admin.sites import NotRegistered
from django.contrib.comments.models import Comment

try:
    admin.site.unregister(Comment)
except NotRegistered:
    pass

from django.contrib.comments.admin import CommentsAdmin

try:
    admin.site.unregister(Comment)
except NotRegistered:
    pass

class MyCommentsAdmin(CommentsAdmin):

    def flag(self, obj):
        flag_name = ''
        try:
            flag_name = obj.flags.values()[0]['flag']
        except IndexError:
            pass
        return flag_name

    list_display = ('name', 'content_type', 'object_pk', 'ip_address', 'submit_date', 'flag', 'is_public', 'is_removed')
    list_filter = ('submit_date', 'site', 'is_public', 'is_removed', 'flags__flag')

admin.site.register(Comment, MyCommentsAdmin)

这将在注释列表中添加一个名为“Flag”的列,该列将显示注释中第一个标志的名称(如果存在)。 list_filter 行在管理站点的右侧添加了一个新的过滤器,允许您仅显示特定的标志。

I was looking for a solution to this exact problem when I found your question.

I used some tips from Django - Extending another apps ModelAdmin?

I created an admin.py file in main app directory. Here are the contents:

from django.contrib import admin
from django.contrib.admin.sites import NotRegistered
from django.contrib.comments.models import Comment

try:
    admin.site.unregister(Comment)
except NotRegistered:
    pass

from django.contrib.comments.admin import CommentsAdmin

try:
    admin.site.unregister(Comment)
except NotRegistered:
    pass

class MyCommentsAdmin(CommentsAdmin):

    def flag(self, obj):
        flag_name = ''
        try:
            flag_name = obj.flags.values()[0]['flag']
        except IndexError:
            pass
        return flag_name

    list_display = ('name', 'content_type', 'object_pk', 'ip_address', 'submit_date', 'flag', 'is_public', 'is_removed')
    list_filter = ('submit_date', 'site', 'is_public', 'is_removed', 'flags__flag')

admin.site.register(Comment, MyCommentsAdmin)

This will add a column to the Comment list called 'Flag', which will show the name of the first flag on the comment, if one exists. The list_filter line adds a new filter to the right hand side in the admin site that allows you just to show particular flags.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文