Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 660 Bytes

README.rst

File metadata and controls

47 lines (29 loc) · 660 Bytes

OPPS-COMMENTS

Install

pip install -e git+https://github.com/opps/opps-comments.git#egg=opps-comments

Configuration

Include opps.comments on your django settings:

INSTALLED_APPS += (
    'opps.comments',
)

Add Opps Comments credentials on your django settings:

OPPS_COMMENTS = {
    "disqus": {
        "shortname": "opps",
    },
    "facebook": {
        "APP_ID": "123456"
    },
    "google": {}
}

Used

{% load comments_tags %}
{% load_comments %}