Metadata-Version: 2.0
Name: bootstrap-admin
Version: 0.3.9
Summary: Responsive Theme for Django Admin With Sidebar Menu (Django 1.11)
Home-page: https://github.com/douglasmiranda/django-admin-bootstrap
Author: Douglas Miranda
Author-email: douglasmirandasilva@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Keywords: django,admin,skin,theme,bootstrap,responsive
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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

Responsive Django Admin
=======================

If you're looking for a version compatible with Django 1.8 just install **0.3.7.1**.

Features
--------

* Responsive
* Sidebar Menu
* Easy install / setup
* Support Django **1.11** and **2.0**
* Bootstrap 3


Screenshots
-----------

.. image:: https://raw.githubusercontent.com/douglasmiranda/django-admin-bootstrap/master/screenshots/screenshot.png
    :target: https://github.com/douglasmiranda/django-admin-bootstrap/tree/master/screenshots
    :alt: See Screenshots

`More screenshots <https://github.com/douglasmiranda/django-admin-bootstrap/tree/master/screenshots>`_

INSTALL
-------

from pypi (recommended) ::

    $ pip install bootstrap-admin

And don't forget to add *bootstrap\_admin* in **INSTALLED\_APPS** before
the *django.contrib.admin*.

Example:

.. code-block:: python

    INSTALLED_APPS = (  
        # ...  
        'bootstrap_admin', # always before django.contrib.admin  
        'django.contrib.admin',  
        # ...  
    )  

**Sidebar Menu**

It is enabled by default. But if you remove `django.template.context_processors.request` from your `context_processors`.

Just disable it:

.. code-block:: python

    BOOTSTRAP_ADMIN_SIDEBAR_MENU = False


Contributing
------------

1. Fork it!
2. Create your feature branch: ``git checkout -b my-new-feature``
3. Commit your changes: ``git commit -am 'Add some feature'``
4. Push to the branch: ``git push origin my-new-feature``
5. Submit a pull request =]

See the `full list <https://github.com/douglasmiranda/django-admin-bootstrap/blob/master/AUTHORS.rst>`_ of contributors.

`Open an issue <https://github.com/douglasmiranda/django-admin-bootstrap/issues/new>`_
if you find a bug or want something more.


