Metadata-Version: 2.1
Name: molo.commenting
Version: 11.2.1
Summary: Comments helpers for sites built with Molo.
Home-page: http://github.com/praekelt/molo.commenting
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: BSD
Keywords: praekelt,mobi,web,django
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
License-File: LICENSE
Requires-Dist: molo.core (<12.0.0,>=11.0.5)
Requires-Dist: django-contrib-comments (==2.0.0)
Requires-Dist: django-import-export
Requires-Dist: django-notifications-hq
Requires-Dist: wagtail-personalisation-molo (<4.0.0,>=3.0.4)
Requires-Dist: Unidecode (==0.04.16)
Requires-Dist: django-admin-rangefilter (==0.8.1)

Molo Commenting
===============

.. image:: https://travis-ci.org/praekelt/molo.commenting.svg?branch=develop
    :target: https://travis-ci.org/praekelt/molo.commenting
    :alt: Continuous Integration

.. image:: https://coveralls.io/repos/praekelt/molo.commenting/badge.png?branch=develop
    :target: https://coveralls.io/r/praekelt/molo.commenting?branch=develop
    :alt: Code Coverage

Installation::

   pip install molo.commenting


Django setup::

   INSTALLED_APPS = INSTALLED_APPS + (
      'django_comments',
      'molo.commenting',
      'notifications'
   )
   COMMENTS_APP = 'molo.commenting'
   COMMENTS_FLAG_THRESHHOLD = 3
   COMMENTS_HIDE_REMOVED = False
   SITE_ID = 1

In your urls.py::

   urlpatterns += [
       url(r'^commenting/',include('molo.commenting.urls', namespace='molo.commenting', app_name='molo.commenting')),
       url(r'', include('django_comments.urls')),
   ]

In your article_page.html::

   {% block content %}
    {% include "comments/comment_block.html" %}
   {% endblock %}


