Metadata-Version: 2.1
Name: django-admin-info
Version: 0.0.5
Summary: Simple Collapsible Admin view for Django with model information.
Home-page: https://github.com/nilesh-kr-dubey/django-admin-info
Author: Nilesh Kumar Dubey
Author-email: nileshdubeyindia@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: Django (>=1.7)

# Django Admin Info

## Description
Simple Collapsible Admin view for Django with model information.

## Installation
```pip install django-admin-info```

## Quick start

1. Add "admin_info" to your INSTALLED_APPS in settings.py like this::

    ```
    INSTALLED_APPS = [
        ...
        'admin_info',
        ...
    ]
    ```

2. Ensure "APP_DIRS" to "True" in settings.py like this::

    ```
    TEMPLATES = [
        {
            ...
            'DIRS': [],
            'APP_DIRS': True,
            ...
        },
    ]
    ```


## Licence
Copyright (c) 2020 Nilesh Kumar Dubey

This repository is licensed under the MIT license.
See LICENSE for details


