Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyzima-spb/django-adminlte-full
This Django application is port the AdminLTE Template for easy integration into Django Framework
https://github.com/kyzima-spb/django-adminlte-full
Last synced: about 2 months ago
JSON representation
This Django application is port the AdminLTE Template for easy integration into Django Framework
- Host: GitHub
- URL: https://github.com/kyzima-spb/django-adminlte-full
- Owner: kyzima-spb
- License: mit
- Created: 2016-04-14T16:29:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-03T21:37:17.000Z (over 4 years ago)
- Last Synced: 2024-04-26T00:25:05.404Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 17.4 MB
- Stars: 11
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE
Awesome Lists containing this project
README
Django-AdminLTE-Full
====================This Django application is port the `AdminLTE`_ for easy integration into `Django`_ Framework.
Installation
------------1. Install the latest stable version::
$ pip install django-adminlte-full
or install development version (bugs are possible)::
$ pip install https://github.com/kyzima-spb/django-adminlte-full/archive/dev-master.zip
2. In the settings, add ``crispy_forms`` and ``adminlte_full`` to your ``INSTALLED_APPS``, like this::
INSTALLED_APPS = [
...
'crispy_forms',
'adminlte_full',
]3. In the settings, set the value of the ``CRISPY_TEMPLATE_PACK`` option as ``'bootstrap4'``::
CRISPY_TEMPLATE_PACK = 'bootstrap4'
4. In the settings, add ``adminlte`` to the list of context processors, like this::
TEMPLATES = [
{
...
'OPTIONS': {
'context_processors': [
...
'adminlte_full.context_processors.adminlte',
],
},
},
]5. Include the URLconf in your project ``urls.py`` like this::
path('', include('adminlte_full.urls'))
Documentation
-------------
`Continue reading the documentation.`_.. _Django: https://www.djangoproject.com/
.. _AdminLTE: https://adminlte.io/
.. _Continue reading the documentation.: https://adminlte-full.readthedocs.io/en/latest/django.html