Metadata-Version: 1.1
Name: django-cuelogic-comments
Version: 0.1
Summary: A simple Django app for manage comments.
Home-page: #
Author: Dadaso Zanzane
Author-email: dadaso.zanzane@cuelogic.co.in
License: BSD License
Description: # django-cuelogic-comments
        
        django-cuelogic-comments is a simple Django app to conduct Web-based Comments. 
        
        Quick start
        -----------
        
        1. Add "comments" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'django_cuelogic_comments',
            )
        
        2. Run `python manage.py migrate` to create the comments models.
        
        3. In your view file import the module 
            
            from django_cuelogic_comments import Comments
        
        4. Create a instance in your view file/where you want to include comments
            
            comments = Comments.get(request,post_id,delete=True,reply=True,"Username")
        
        5. Pass this comments data to your template
           
           render_to_response('your template file', RequestContext(request, {"comments":comments}))
        
        6. Print in Template
        
           {{comments}}
            
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
