{ "info": { "author": "Diederik van der Boor", "author_email": "vdboor@edoburu.nl", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 1.7", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Framework :: Django :: 2.0", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "django-threadedcomments\n=======================\n\n*threadedcomments* is a Django application which allows for the simple creation of a threaded commenting system.\nCommenters can reply both to the original item, and reply to other comments as well.\n\nThe application is (as of 0.9) built on top of django_comments_ (or django.contrib.comments_),\nwhich allows it to be easily extended by other modules.\n\n\nInstallation\n============\n\nInstall the package via pip::\n\n pip install django-threadedcomments\n\nIt's preferred to install the module in a virtual environment.\n\nConfiguration\n-------------\n\nAdd the following to ``settings.py``::\n\n INSTALLED_APPS += (\n 'threadedcomments',\n 'django_comments',\n 'django.contrib.sites',\n )\n\n COMMENTS_APP = 'threadedcomments'\n\nBy placing the ``threadedcomments`` app above the ``django.contrib.comments`` application,\nthe placeholder ``comments/list.html`` template will already be replaced by a threaded view.\n\nMake sure django.contrib.comments_ is configured in ``urls.py``::\n\n urlpatterns += patterns('',\n url(r'^articles/comments/', include('django_comments.urls')),\n )\n\n.. note::\n For older Django versions (up till 1.6), you can also use django.contrib.comments_ in the ``INSTALLED_APPS``.\n This packages uses either one of those packages, depending on what is installed.\n\nProvide a template that displays the comments for the ``object`` (e.g. article or blog entry)::\n\n {% load threadedcomments_tags %}\n\n ...\n\n