Metadata-Version: 1.1
Name: django-admintab
Version: 0.1.0
Summary: Provide tabs for change_list in the django admin interface
Home-page: https://github.com/farmlab/django-admintab
Author: Jérôme Dury
Author-email: jerome.dury@flyingsheep.fr
License: MIT
Description-Content-Type: UNKNOWN
Description: =============================
        django-admintab
        =============================
        
        .. image:: https://badge.fury.io/py/django-admintab.svg
            :target: https://badge.fury.io/py/django-admintab
        
        .. image:: https://travis-ci.org/farmlab/django-admintab.svg?branch=master
            :target: https://travis-ci.org/farmlab/django-admintab
        
        .. image:: https://codecov.io/gh/farmlab/django-admintab/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/farmlab/django-admintab
        
        Django-admintab package provides a simple tab feature within change_list views in the django admin interface.
        
        Uses cases:
        
        * Simple model dashboard
        * Displaying your data as graph or map
        * ...
        
        Documentation
        -------------
        
        The full documentation is at https://django-admintab.readthedocs.io.
        
        Quickstart
        ----------
        
        Install django-admintab::
        
            pip install git+https://github.com/farmlab/django-admintab.git
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'admintab.apps.AdmintabConfig',
                ...
            )
        
        Features
        --------
        
        * make use of all functionalities of the standart django change_list view (filtering, searching ...)
        * no dependency
        
        TODO
        ----
        
        * better documention
        * tests
        * and then release on pypi
        
        
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        Credits
        -------
        
        .. image:: https://github.com/farmlab/django-admintab/blob/master/docs/_static/agrobioperigord.png
        
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2018-02-06)
        ++++++++++++++++++
        
        * First release on Github.
        
Keywords: django-admintab
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
