https://github.com/tushortz/django-uikit3-admin
Django Uikit3 Admin, a fork of Django uikit admin is a modern grid based skin for Django built-in administration interface and uses UIKit 3.
https://github.com/tushortz/django-uikit3-admin
Last synced: 3 months ago
JSON representation
Django Uikit3 Admin, a fork of Django uikit admin is a modern grid based skin for Django built-in administration interface and uses UIKit 3.
- Host: GitHub
- URL: https://github.com/tushortz/django-uikit3-admin
- Owner: tushortz
- License: bsd-3-clause
- Created: 2020-05-09T04:06:24.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-09T04:20:54.000Z (about 5 years ago)
- Last Synced: 2025-01-09T05:18:27.759Z (5 months ago)
- Language: JavaScript
- Size: 925 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Uikit3 Admin
Django Uikit3 Admin, a fork of Django uikit admin is a modern grid based skin for Django built-in administration interface and uses UIKit 3.
## Quick start
1. Install Django Uikit3 Admin using pip::
pip install django-uikit3-admin
2. Add "uikit3_admin" to your INSTALLED_APPS setting like this ::
```python
INSTALLED_APPS = [
'uikit3_admin',
...
]
```3. Start the development server and visit http://127.0.0.1:8000/admin/
(you'll need the Admin app enabled).