Metadata-Version: 2.1
Name: django-admin-black
Version: 1.0.0
Summary: Modern template for Django admin interface
Home-page: https://github.com/app-generator/django-admin-black
Author: AppSeed.us
Author-email: support@appseed.us
License: MIT License
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Environment :: Web Environment
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: User Interfaces
Description-Content-Type: text/markdown
License-File: LICENSE.md

# [Django Admin Black](https://github.com/app-generator/django-admin-black)

Modern template for **Django Admin Interface** coded on top of **Black Dashboard**, an open-source `Boostrap 4` design from `Creative-Tim`.

> Actively supported by [AppSeed](https://appseed.us/) via `Email` and `Discord`.

<br>

**Links & Resources**

- [Django Black Dashboard](https://appseed.us/product/black-dashboard/django/) - free starter with the same design
- [Django Black Dashboard](https://django-black-dashboard.appseed-srv1.com/) - LIVE Demo

<br />

## Why `Django Admin Black`

- Modern `Bootstrap 4` Design
- `Responsive Interface`
- `Minimal Template` overriding
- `Easy integration`

<br>

![Django Admin Black - Template project for Django provided by AppSeed.](https://user-images.githubusercontent.com/51070104/196730732-dda1794b-93ce-48cb-bc5c-182411495512.png)

<br>

## How to use it

<br />

> Install the package via `PIP` 

```bash
$ pip install django-admin-black
// OR
$ pip install git+https://github.com/app-generator/django-admin-black.git
```

<br />

* Add 'admin_black' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):

```python
    INSTALLED_APPS = (
        ...
        'admin_black.apps.AdminBlackConfig',
        'django.contrib.admin',
    )
```

<br />

> Create database tables

```bash
$ python manage.py migrate admin_black
$ # OR
$ python manage.py syncdb
```

<br />

> Collect static if you are in production environment:

```bash
$ python manage.py collectstatic
```

<br />

## Screenshots

> **Black Theme** - `Admin Section`  

![image](https://user-images.githubusercontent.com/51070104/196731580-f0766235-3c92-4d79-bc38-3c34ad511bdb.png)

<br />

> **Black Theme** - `Admin Widgets`  

![image](https://user-images.githubusercontent.com/51070104/196731649-dfa68903-2d3d-4a66-a169-6b88eb0326d1.png)

<br />

---
**[Django Admin Black](https://github.com/app-generator/django-admin-black)** - Modern Admin Interface provided by **[AppSeed](https://appseed.us/)**


