Django 的评论和评级系统
我是 Django 的新手,我对它们了解不多。
我正在尝试为 Django 中的博客构建评论和评级系统。我可以使用一些应用程序来实现此目的(评论和评级)?
请告诉我。
此致,
I am new to Django, I don't know a lot of them.
I am trying to build a comment and rating system for a blog in Django. There are some apps that I can use to achieve this(Comment and Rating)?
Please let me know.
Best Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Eldarion,我们最终为网站上的所有评论构建并使用了 dialogos:https ://github.com/eldarion/dialogos
对于评级,正在扩展 agon:https://github.com/eldarion/agon
虽然 agon 最初只是给人们积分,但它也可以用来给任意物体积分,这可用于投票和评级。
这两个应用程序都将在 Pinax 的下一版本中得到广泛使用。
At Eldarion, we've ended up building and using dialogos for all our comments on sites: https://github.com/eldarion/dialogos
And for ratings are extending agon: https://github.com/eldarion/agon
While agon was originally just about giving people points, it can also be used to give arbitrary objects points and this can be used for both voting and rating.
Both of these apps will have extensive use in the next release of Pinax.
django 附带的 django.contrib.comments 运行良好,即使它相当简单。不过,似乎可以扩展以满足更复杂的需求。
The
django.contrib.comments
that comes with django works well, even if it is rather simplistic. Seems to be extendable for more elaborate needs, though.