Skip to main content

"Django Comments Framework XTD extension app with Ajax commenting support

Project description

# django-ajax-comments-xtd
An addon app to https://github.com/danirus/django-comments-xtd that makes comments submittable via ajax

# Installation

1. Install from PYPI:

```pip install django-ajax-comments-xtd```

2. Add the app and its dependencies to INSTALLED_APPS in settings.py:
```
INSTALLED_APPS = [
...
'django_ajax_comments_xtd',
'django_comments_xtd',
'django_comments',
...
]
```

3. Add COMMENTS_APP to your settings.py:

```
COMMENTS_APP = 'django_comments_xtd'
```

Make sure you follow the exact order of putting these apps together

4. Add this to your url config:

```
urlpatterns = [
...
url(r'^comments/', include('tow.django_ajax_comments_xtd.urls')),
...
]
```
Note: You don't need to add urls config provided by django_comments and django_comments_xtd because our app includes them all.

5. Run migrations to create necessary database tables:

```
python manage.py migrate
```

6. Add JS library link to your template:
```
<script src="{% static 'django_ajax_comments_xtd/js/ajax_comments.js' %}"></script>
```

7. In templates use these tags to display a list of comments and the comment form:

```
{% load comments comments_xtd %}
...

<div id="comments">
{% render_xtdcomment_tree for object %}

{% render_comment_form for object %}
</div>
```

And now you should have ajax comments enabled.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-ajax-comments-xtd-0.1.0.tar.gz (9.0 kB view details)

Uploaded Source

File details

Details for the file django-ajax-comments-xtd-0.1.0.tar.gz.

File metadata

File hashes

Hashes for django-ajax-comments-xtd-0.1.0.tar.gz
Algorithm Hash digest
SHA256 70322113eefcba8392540364e8d52958e7b934866619d50c35c64eedcc610943
MD5 cae0af7d78dc8250f96dd3a33dae6679
BLAKE2b-256 8996795e1e058dc401ceb82347a29747f0f2b2715b90bf76f11b4ede6a1832d8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page