django soho ui base
Project description
开始使用
1、在INSTALLED_APPS中添加django_sohoui
INSTALLED_APPS = [
'django_sohoui',
'django.contrib.admin',
....
]
2、执行makemigrations
python manage.py makemigrations
python manage.py migrate
**3、 在TEMPLATES中添加context_processors **
'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',
]
4、 在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')),
]
5、 在project/settings.py中添加LOGIN_BG_IMAGE(自定义登录页背景图片)
SOHO_LOGIN_BG_IMAGE = '/static/custom/images/logo_bg.jpg'
6、 在project/settings.py中添加SOHO_MENU_LIST
SOHO_MENU_LIST = {
'show_system_menu': True,
}
X_FRAME_OPTIONS = 'SAMEORIGIN'
LOGIN_REDIRECT_URL = '/django_sohoui/home/'
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.1.tar.gz
(6.8 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.1.tar.gz.
File metadata
- Download URL: django_sohoui-1.3.1.tar.gz
- Upload date:
- Size: 6.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17a3c1a0e3f3332b05bc79f36dad65758c331508e5376e2fd7a3a48ee572e565
|
|
| MD5 |
32d6c074cea49298f3d6ef284786c7ce
|
|
| BLAKE2b-256 |
a2b96f02e57844bea80528052e7e10eba58765390b529ecf13622a083f6fa7d9
|
File details
Details for the file django_sohoui-1.3.1-py3-none-any.whl.
File metadata
- Download URL: django_sohoui-1.3.1-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 |
d83cb7872bfa9507f80e0b6256e6d037d949ade65ad160b85ef2a3027557f1f6
|
|
| MD5 |
a4b11c9121d6e335f9ff96bd3552f386
|
|
| BLAKE2b-256 |
ba8da56e884de81c3ac3bde67a8eba947598c568414294a6b87fcc3813f01ac2
|