Modification of Disqus comment inside Django Admin

Disqus comments can be integrated with Django using django-disqus , but I did not find a way to moderate those comments in the Django / Django Admin. Modification should occur using the Disqus toolbar.

Are there any projects that provide moderation for Disqus comments in Django? Or even useful Disqus API libraries? I did a quick search with no results, and I do not want to start work on what already exists.

+8
django django-admin disqus
source share
1 answer

There are currently no tools for integrating the Disqus admin into your Django admin. You can't even add it to an iframe because disqus.com rejected the request from the iframe .

However, there is an official API that allows you to perform some operations with messages and users, you can create your own moderator tools (you may be limited to 1000 requests per hour). You can even create an open source application if you are such a kind person :)

+1
source share

All Articles