我还是 Django 和 Bootstrap 的新手,所以我正在尝试 django-bootstrap 包:https ://github.com/dyve/django-bootstrap3
该页面中包含的示例模板(在表单操作中更改了 url):
{% load bootstrap3 %}
{# Load CSS and JavaScript #}
{% bootstrap_css %}
{% bootstrap_javascript %}
{# Display a form #}
<form action="/search/" method="post" class="form">
{% csrf_token %}
{% bootstrap_form form %}
{% bootstrap_form_buttons %}
<button type="submit" class="btn btn-primary">
{% bootstrap_icon "star" %} Submit
</button>
{% end_bootstrap_form_buttons %}
</form>
给我错误:
BootstrapError at /
Parameter "form" should contain a valid Django Form.
在这条线上
{% bootstrap_form form %}
我不确定问题出在哪里,因为这是该 README 中包含的示例模板。