From e5d055ee4499560520777a5af57f6a79eb6be548 Mon Sep 17 00:00:00 2001 From: Simon de Haan Date: Thu, 6 Aug 2015 22:22:14 +0200 Subject: [PATCH] update README --- README.rst | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index 74a099f..30f1ad7 100644 --- a/README.rst +++ b/README.rst @@ -1,33 +1,33 @@ -Molo Comments -============= +Molo Commenting +=============== -.. image:: https://travis-ci.org/praekelt/molo.comments.svg?branch=develop +.. image:: https://travis-ci.org/praekelt/molo.commenting.svg?branch=develop :target: https://travis-ci.org/praekelt/molo.comments :alt: Continuous Integration -.. image:: https://coveralls.io/repos/praekelt/molo.comments/badge.png?branch=develop - :target: https://coveralls.io/r/praekelt/molo.comments?branch=develop +.. 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.comments + pip install molo.commenting Django setup:: INSTALLED_APPS = INSTALLED_APPS + ( - 'django_comments', - 'mptt', - 'molo.comments', - 'django.contrib.sites', + 'mptt', + 'django_comments', + 'django.contrib.sites', + 'molo.commenting' ) - COMMENTS_APP = 'molo.comments' + COMMENTS_APP = 'molo.commenting' SITE_ID = 1 In your urls.py:: urlpatterns += patterns('', - url(r'^comments/', include('molo.comments.urls')), + url(r'^commenting/', include('molo.commenting.urls')), )