我正在尝试在 Django 中使用 Twitter Bootstrap。我已经让它大部分工作了。我有一个正确链接 CSS 的 profile.html 模板,但我有一个没有预先添加 STATIC_URL 的 user_timeline.html 模板。
user_timeline.html 确实扩展了具有 CSS 链接的 base.html。
在我的 profile.html 我得到
<link href="/static//css/bootstrap.css" rel="stylesheet">
哪个有效,但在 user_timeline.html 我得到
<link href="css/bootstrap.css" rel="stylesheet">
任何想法为什么它没有正确地预先设置?