Metadata-Version: 2.1
Name: django-kelove-admin-lte
Version: 0.1.4
Summary: AdminLTE Template for Django Admin
Home-page: https://xqitw.coding.net/public/django-kelove-admin-lte/django-kelove-admin-lte/git
License: Apache-2.0
Keywords: template,django,django-admin,django-kelove-admin,django-kelove-admin-lte,AdminLTE
Author: IT小强xqitw.cn
Author-email: mail@xqitw.cn
Maintainer: IT小强xqitw.cn
Maintainer-email: mail@xqitw.cn
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: django (>=3.1,<4.0)
Project-URL: Documentation, https://xqitw.coding.net/public/django-kelove-admin-lte/django-kelove-admin-lte/git
Project-URL: Repository, https://e.coding.net/xqitw/django-kelove-admin-lte/django-kelove-admin-lte.git
Description-Content-Type: text/markdown

AdminLTE Template for Django Admin
==================================

### Installation

```shell
pip install django-kelove-admin-lte
```

### Configuration

```python
INSTALLED_APPS = [
    # AdminLTE Template for Django Admin
    'django_kelove_admin_lte',
    # other
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]

KELOVE_ADMIN_LTE_SHOW_PROJECT_URL = True
KELOVE_ADMIN_LTE_ADMIN_LOGO = 'https://adminlte.io/themes/v3/dist/img/user2-160x160.jpg'
KELOVE_ADMIN_LTE_ADMIN_FAVICON = 'https://adminlte.io/themes/v3/dist/img/user2-160x160.jpg'
KELOVE_ADMIN_LTE_ADMIN_AVATAR = 'https://adminlte.io/themes/v3/dist/img/user1-128x128.jpg'
KELOVE_ADMIN_LTE_ADMIN_FOOTER = '''
        <div class="float-right d-none d-sm-block">
            <b>Version</b> 3.0.6
        </div>
        <strong>Copyright &copy; 2014-2020 <a href="http://adminlte.io">AdminLTE.io</a>.</strong> All rights
        reserved.
        '''
KELOVE_ADMIN_LTE_ADMIN_MENUS = {
    # app
    "core_user": {"icon": "fa fa-fw fa-users-cog"},
    "auth": {"icon": "fa fa-fw fa-shield-alt"},
    # model
    "core_user.User": {"icon": "fa fa-fw fa-user"},
    "auth.Group": {"icon": "fa fa-fw fa-users-cog"},
    "auth.Permission": {"icon": "fa fa-fw fa-shield-alt"},
    "auth.User": {"icon": "fa fa-fw fa-user"},
}
```

