{ "info": { "author": "Julian Moritz", "author_email": "jumo@gmx.de", "bugtrack_url": null, "classifiers": [], "description": "README\n======\n\nTo make sure no bad hacker adds a comment with no authentication, you have to install a small app called django-contrib-comments-auth::\n\n\tpip install django-contrib-comments-auth\n\t\nAdd it to the INSTALLED_APPS::\n\n \tINSTALLED_APPS = (\n # ...\n 'django.contrib.comments',\n 'commentsauth',\n\t)\n\t\nAdd these lines to your root urls.py::\n\n\turlpatterns = patterns('',\n # ...\n (r'^comments/', include('commentsauth.urls'),\n (r'^comments/', include('django.contrib.comments.urls'))\n\t)\n\t\nIt must be *before* the django.contrib.comments.urls-directive and have the same prefix. \n\nThe template for the comment-form could look like::\n\n\t{% load comments %}\n\t{% if request.user.is_authenticated %}\n\t