This document is designed to get you up and running with the pinax.apps.threadedcomments_extras...
These are the requirements to run pinax.apps.threadedcomments_extras:
- Python 2.4+ (Python 3.x is not supported yet)
- Django 1.2+
These dependencies should be added to your requirements/project.txt file and installed using pip. For example:
pip install -r requirements/project.txt
Add pinax.apps.threadedcomments_extras to your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
"pinax.apps.threadedcomments_extras",
]
After installing this app in your Django project, you now have access to easily add comments for a particular object in one of your templates.
Simple, load the template tag and call it within your template.
{% load comments_tag %}
{% comments post %}