标签:ref image form Django项目 static install 数据 用户 python
python:3.7.2githup:https://github.com/sshwsfc/xadmin
django版本2.0及以上一不能使用pip install xadmin进行安装,根据作者的安装说明使用一下命令直接从githup安装
pip install git+git://github.com/sshwsfc/xadmin.git@django2
settings.py设置
引入xadmin应用
INSTALLED_APPS = [
......
‘xadmin‘,
‘crispy_forms‘,
‘reversion‘,
]
#设置语言
LANGUAGE_CODE = ‘zh-hans‘
设置时区
TIME_ZONE = ‘Asia/ShangHai‘
#设置static
STATIC_URL = ‘/static/‘
STATIC_ROOT = ‘static/‘
url模块设置
import xadmin
xadmin.autodiscover()
from django.urls import re_path, include
from xadmin.plugins import xversion
xversion.register_models()
urlpatterns = [
re_path(r‘^xadmin/‘, include(xadmin.site.urls)),
]
初始化数据库
python manage.py makemigrations
报错了:
ModuleNotFoundError: No module named ‘django.contrib.formtools‘
解决方案如下:
卸载django-formtoolspip uninstall django-formtools
重新安装并指定版本pip install django-formtools==2.1
重新初始化数据库
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser``
收集静态文件
python manage.py collectstatic
运行项目
python manage.py runserver
通过浏览器访问
xadmin与django项目集成成功可成功访问后台管理页面
标签:ref image form Django项目 static install 数据 用户 python
原文地址:https://blog.51cto.com/maoxiaoxiong/2359713