Simpleui is a theme of Django admin, developed based on element-ui+vue, and rewrites and optimizes more than 90% of the pages. Let django admin be more in line with the usage habits of Chinese people. And it is possible to change the skin of Django admin without modifying any code. 100% compatible with native admin!
1. Built-in 28 popular themes
2. pip lightning installation is 100% compatible with native admin without modifying the code
3. Multi-tab page, each module is more clear
4. The configuration is simple and you can get started quickly. After adding simpleui to settings.py, it will take effect immediately and the efficiency will be increased by 100%! Make back-end development easy.
5. Element-UI + Vue blessing makes the ancient django admin look brand new.
6. Added support for Django3.0, Python3.8, and Python3.9. Dare to be the first to try something new.
Django Admin's default interface design language has some shortcomings, such as single color, use of a large number of lines, and obvious segmentation. Classifying these shortcomings is that the interface is monotonous, obvious similarities, and lacks surprises. We believe that the new platform visual style can break these constraints, try some new explorations, and inspire traditional design cognition. Therefore, combined with current design trends, we conceived Element+Django Admin's Simpleui. Let Django Admin and Element interact perfectly. With the most popular backend design style, Django Admin is more powerful.
After installing simpleui using pip or source code, add simpleui to the first line of INSTALLED_APPS in the settings.py file of your project.
Give an example
# Application definition INSTALLED_APPS = [ 'simpleui', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ... ]