Metadata-Version: 1.1
Name: django-ajax-cbv
Version: 0.1.0
Summary: Django module to easily use generic views with ajax. 
Home-page: https://github.com/dipcode-software/django-ajax-cbv/
Author: Dipcode
Author-email: team@dipcode.com
License: MIT
Description-Content-Type: UNKNOWN
Description: 
        Django Ajax CBV
        =================
        
        |Build Status| |Codacy Badge| |Coverage Status| |BCH compliance|
        
        Django module to easily use generic Class Based views with ajax.
        
        Table of contents:
         * `How to install`_;
         * `License`_.
        
        How to install
        --------------
        
        To install the app run :
        
        .. code:: shell
        
            pip install django-ajax-cbv
        
        or add it to the list of requirements of your project.
        
        Then add ‘ajax\_cbv’ to your INSTALLED\_APPS.
        
        .. code:: python
        
            INSTALLED_APPS = [
                ...
                'ajax_cbv',
            ]
        
        License
        -------
        
        MIT license, see the LICENSE file. You can use obfuscator in open source
        projects and commercial products.
        
        .. _How to install: #how-to-install
        .. _License: #license
        
        .. |Build Status| image:: https://travis-ci.org/dipcode-software/django-ajax-views.svg?branch=master
           :target: https://travis-ci.org/dipcode-software/django-ajax-cbv
        .. |Codacy Badge| image:: https://api.codacy.com/project/badge/Grade/a64f03c2bd344561bc21e05c23aa04fb
           :target: https://www.codacy.com/app/srtabs/django-ajax-cbv?utm_source=github.com&utm_medium=referral&utm_content=dipcode-software/django-ajax-cbv&utm_campaign=Badge_Grade
        .. |Coverage Status| image:: https://coveralls.io/repos/github/dipcode-software/django-ajax-cbv/badge.svg?branch=master
           :target: https://coveralls.io/github/dipcode-software/django-ajax-cbv?branch=master
        .. |BCH compliance| image:: https://bettercodehub.com/edge/badge/dipcode-software/django-ajax-cbv?branch=master
           :target: https://bettercodehub.com/
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
