Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

pranjulps3/Comments

 
 

Repository files navigation

#django-ajax-comments Comments

Coverage Status

Build Status

django-ajax-comments is a commenting application for Django-powered websites.

It allows you to integrate commenting functionality to any model you have eg. blogs, pictures, etc...

List of actions you can do:

  • Add a comment
  • Edit a comment you posted (Authenticated)
  • Delete a comment you posted (Authenticated)
  • Like a comment (Authenticated)
  • Emojis for comments

####All actions are done through ajax

##Installation

$ git clone https://github.com/pranjulps3/Comments.git
$ cd Comments
$ python setup.py install

Add 'comments' to your installed_apps in your settings.py file. It should look like the following. Note that you should add it after django.contrib.auth:

INSTALLED_APPS = (
	'django.contrib.admin',
	'django.contrib.auth',
	...
	'comments',
	..
)

In your urls.py:

urlpatterns = [
    ...
    url(r'^comments/', include('comments.urls')),
    ...
]

##Migrations for Django 1.7 and later

Migrate comments:

$ python manage.py migrate comments

##Setup

###Step 1 In your models.py add the field comments to the model for which comments should be added (e.g. Blog) and the appropriate imports as shown below

from django.contrib.contenttypes.fields import GenericRelation
from comments.models import Comment

class Blog(models.Model):
	author = models.ForeignKey(User)
	title = models.CharField(max_length=256)
	body = models.TextField()
	comments = GenericRelation(Comment)

###Step 2 In your template (e.g. blog-detail.html) add the following template tags where object is the instance of blog.

{% load comments_tags %}  # Loading the template tag
{% get_comments object request.user %}  # Include all the comments belonging to a certain object
{% comment_form object request.user %}  # Include the form for adding comments
{% get_comment_count object %}  # Include the number of comments on a certain object

The last template tag {% get_comment_count object %} is already included in {% get_comments %}, however you could include it seperately anywhere you want.


Semantic UI is used to style the comments so to make it look good you can include css which currently is through online CDN directly by adding {% include_css %} after {% load comments_tags %} .

{% load comments_tags %}
{% include_css %}

To make ajax function you need to load a template having all the JavaScript required for the project to run including jQuery. ######It should be added after {% load comments_tags %} directly.

{% load comments_tags %}
{% include_js %}

##Settings In settings.py you could set some settings for the application

####COMMENTS_ALLOW_ANONYMOUS

Its default is False.
If set to True, anonymous users will be allowed to post comments.

To set it to True, add the following to settings.py:

COMMENTS_ALLOW_ANONYMOUS = True

####COMMENTS_ALLOW_EMOJI

Its default is False.
If set to True, Users will be allowed to post emojis in comments.

To set it to True, add the following to settings.py:

COMMENTS_ALLOW_ANONYMOUS = True

####COMMENTS_ALLOW_LIKES

Its default is True.
It allows authenticated users to like/unlike comments.

To change the default, add the following to settings.py:

COMMENTS_ALLOW_LIKES = False

##Styling By default the comments are styled with Semantic UI. Although you can change that by following these simple steps:

  • In your template directory, create a folder and call it comments
  • Retrieve the html templates for the comments application from its directory which can be found in your sitepackages and github as well.
  • Manipulate those templates as you see fit by adding css classes and such.

and you're done. Make sure not to mess with the div tags around comment form as emojis might stop working.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.4%
  • Python 4.8%
  • HTML 2.8%