' bootstrap_tags'不是有效的标记库

时间:2014-04-20 11:24:59

标签: django twitter-bootstrap pinax

我正在使用django-user-accounts的pinax-theme-bootstrap-account。

当我想使用pinax模板时,我收到此错误:

'bootstrap_tags' is not a valid tag library: Template library bootstrap_tags not found,tried        django.templatetags.bootstrap_tags,django.contrib.admin.templatetags.bootstrap_tags,django.contrib.staticfiles.templatetags.bootstrap_tags,account.templatetags.bootstrap_tags

这是signup.html的pinax-theme:

{% extends "site_base.html" %}

{% load url from future %}
{% load i18n %}
{% load bootstrap_tags %}
{% block head_title %}{% trans "Sign up" %}{% endblock %}   
{% block body %}
   <div class="row">
       <div class="span8">
           <form id="signup_form" 
                  method="post" 
                  action="{% url "account_signup" %}" 
                  autocapitalize="off" 
                  class="form-horizontal"{% if form.is_multipart %}     enctype="multipart/form-data"{% endif %}>
               <legend>{% trans "Sign up" %}</legend>
               <fieldset>
                   {% csrf_token %}
                   {{ form|as_bootstrap }}
                   {% if redirect_field_value %}
                       <input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
                   {% endif %}
                   <div class="form-actions">
                       <button type="submit" class="btn btn-primary">{% trans "Sign up" %}</button>
                   </div>
               </fieldset>
           </form>
       </div>
       <div class="span4">
           {% include "account/_signup_sidebar.html" %}
       </div>
   </div> {% endblock %}

2 个答案:

答案 0 :(得分:9)

此错误是由于未安装django_forms_bootstrap Python包所致;因此,django.forms.bootstrap导入失败。

pip install django_forms_bootstrap

然后在settings.py

中将'django_forms_bootstrap'添加到INSTALLED_APPS

然后重新启动您的网站或运行服务器。

答案 1 :(得分:0)

更新...

如果将其升级到bootstrap4,则会遇到此错误:

'bootstrap4'不是注册的标记库。

要为Bootstrap4解决此问题:官方网站link

或使用Python中的简易安装功能:

pip install django-bootstrap4