pinax-theme-bootstrap 无法加载 bootstrap
pinax-theme-bootstrap can't load bootstrap
我目前正在使用(或至少尝试使用)带有 pinax-theme-bootstrap 的 django-user-accout。但是,当我尝试使用任何提供的模板时,我得到了预期的结果
TemplateSyntaxError: 'bootstrap' is not a registered tag library
。
此错误由以下行{% load bootstrap %}
抛出。
我意识到这是因为我没有提供依赖项(bootstrap、JQuery、Font Awesome)。我将如何提供它们?
P.S。我能找到的最接近的副本如下:'bootstrap_tags' is not a valid tag library。
编辑:我已将 bootstrap 添加到我的已安装应用程序列表中。我什至下载了 bootstrap 的副本并添加了一个 init.py 来愚弄 python 以为它是一个模块(求救电话)。都无济于事。
在 settings.py 中的 INSTALLED_APPS 应该是这样的:
INSTALLED_APPS = [
'bootstrap3',
'bootstrap',
'bootstrap_toolkit',
....
]
我目前正在使用(或至少尝试使用)带有 pinax-theme-bootstrap 的 django-user-accout。但是,当我尝试使用任何提供的模板时,我得到了预期的结果
TemplateSyntaxError: 'bootstrap' is not a registered tag library
。
此错误由以下行{% load bootstrap %}
抛出。
我意识到这是因为我没有提供依赖项(bootstrap、JQuery、Font Awesome)。我将如何提供它们?
P.S。我能找到的最接近的副本如下:'bootstrap_tags' is not a valid tag library。
编辑:我已将 bootstrap 添加到我的已安装应用程序列表中。我什至下载了 bootstrap 的副本并添加了一个 init.py 来愚弄 python 以为它是一个模块(求救电话)。都无济于事。
在 settings.py 中的 INSTALLED_APPS 应该是这样的:
INSTALLED_APPS = [
'bootstrap3',
'bootstrap',
'bootstrap_toolkit',
....
]