We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug描述
docker exec -it django python manage.py collectstatic
简单的描述下遇到的bug: Briefly describe the bugs encountered:
重现步骤 ** repeat step **
settings.py
docker-compose up --build
pip list
环境 ** environment**
1.Operating System: Ubuntu 22.04.3
2.Python Version: 3.10
3.Django Version: 4.2.4
4.SimpleUI Version: 2024.4.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bug描述
docker exec -it django python manage.py collectstatic
后,静态文件也都没有加载出来,但是我的STATIC_ROOT = os.path.join(BASE_DIR, "static")和STATIC_URL='/static/'这样设置的,但是依旧无法呈现simpleui的默认主题简单的描述下遇到的bug:
Briefly describe the bugs encountered:
重现步骤
** repeat step **
settings.py
中的INSTALLED_APPS中添加'simpleui'在第一行,并重新执行docker-compose up --build
,构建服务2.使用docker exec -it django bash进入django容器,用
pip list
查看安装的依赖,可以看到django-simpleui已经安装了3.使用IP:port/admin访问运行的Django服务的admin界面,但显示的还是原先的风格
环境
** environment**
1.Operating System:
Ubuntu 22.04.3
2.Python Version:
3.10
3.Django Version:
4.2.4
4.SimpleUI Version:
2024.4.1
The text was updated successfully, but these errors were encountered: