Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 django 测试站点,我可以看到管理站点,但它的格式与教程示例不同。
这是我的管理网站的外观:
但在示例中,它看起来像这样:
缺少什么来显示正确的格式?
看起来您的 CSS 文件没有被加载。确保您的 django 安装正确设置为服务器输出静态文件。默认情况下,CSS 文件位于/static/admin/css.
/static/admin/css
从 settings.py 中取消注释 INSTALLED_APPS 下的“django.contrib.staticfiles”。