django soho ui base
Project description
django admin ui
1、在INSTALLED_APPS中添加django_sohoui
INSTALLED_APPS = [
'django_sohoui',
'django.contrib.admin',
....
]
2、克隆静态资源到项目的静态目录
python manage.py collectstatic
3、执行makemigrations
python manage.py makemigrations
python manage.py migrate
4、在TEMPLATES中添加context_processor
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
## 添加custom_context
'django_sohoui.context_processors.custom_context',
]
5、在project/urls.py中添加django_sohoui
from django_sohoui.adminsite import adminsite
urlpatterns = [
## 添加django_sohoui
path('admin/', adminsite.urls),
path('django_sohoui/', include('django_sohoui.urls')),
]
6、 在project/settings.py中添加LOGIN_BG_IMAGE(自定义登录页背景图片)
SOHO_LOGIN_BG_IMAGE = '/static/custom/images/logo_bg.jpg'
7、 在project/settings.py中添加SOHO_MENU_LIST
SOHO_MENU_LIST = {
'show_system_menu': True,
'models':[
{
'name': '自定义页面',
'models':[
{
'name': '自定义页面',
'admin_url': '/django_sohoui/custom_url/'
}
],
}
]
}
X_FRAME_OPTIONS = 'SAMEORIGIN'
# 配置首页路由地址
LOGIN_REDIRECT_URL = '/django_sohoui/home/'
8、预览
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django_sohoui-1.3.5.tar.gz
(6.9 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_sohoui-1.3.5.tar.gz.
File metadata
- Download URL: django_sohoui-1.3.5.tar.gz
- Upload date:
- Size: 6.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7f8839652b5a9848bbecd866226858476d9cc0cea78a9f428d6e5df34bd9c54
|
|
| MD5 |
436093336960097232069aa0fd16840d
|
|
| BLAKE2b-256 |
08a567d4f408e70186381cd40370405bfe2c96f563b30f4b96c0aec69bb28092
|
File details
Details for the file django_sohoui-1.3.5-py3-none-any.whl.
File metadata
- Download URL: django_sohoui-1.3.5-py3-none-any.whl
- Upload date:
- Size: 6.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a3df99b9c655c6bb81f2557ed8af1a96b65d9a229adc053ad71ec33c1d341e3
|
|
| MD5 |
d4c5f9cc82a4c94f15f569c1a5a4b48e
|
|
| BLAKE2b-256 |
014fb605167ae606c8dff9007930a831e69229c33fe029becb3bd0300357d365
|