是否可以将另一个 class 添加到 django-bootstrap-ui 模板标签
Is it possible to add another class to a django-bootstrap-ui template tag
在我的 django 项目中,我使用 django-bootstrap-ui 0.5.1
。
我把它放在我的 settings.py
INSTALLED_APPS
变量中,并通过我的 requirements.txt
文件安装在我的虚拟环境中。例如,我已经使用基本 {% container %}
标签及其子标签 {% row %}
和 {% column xs="8" sm="6" md="4" lg="3" %}
确认一切正常。
我的问题是:
如果{% container %}
呈现以下代码:
<div class='container'>
</div>
我如何向 div 添加另一个 class,与 'container'
一起,以便输出看起来像:
<div class='container custom-class'>
</div>
我已经阅读了文档,但令人惊讶的是没有看到任何相关内容,这让我觉得答案可能就在我面前,只是我看不到而已。
与其试图改变这个库来做我想做的事,不如自定义 django-tables2 的 {% render_table %}
函数要容易得多。
$ pip install django-tables2
并阅读文档 here.
在我的 django 项目中,我使用 django-bootstrap-ui 0.5.1
。
我把它放在我的 settings.py
INSTALLED_APPS
变量中,并通过我的 requirements.txt
文件安装在我的虚拟环境中。例如,我已经使用基本 {% container %}
标签及其子标签 {% row %}
和 {% column xs="8" sm="6" md="4" lg="3" %}
确认一切正常。
我的问题是:
如果{% container %}
呈现以下代码:
<div class='container'>
</div>
我如何向 div 添加另一个 class,与 'container'
一起,以便输出看起来像:
<div class='container custom-class'>
</div>
我已经阅读了文档,但令人惊讶的是没有看到任何相关内容,这让我觉得答案可能就在我面前,只是我看不到而已。
与其试图改变这个库来做我想做的事,不如自定义 django-tables2 的 {% render_table %}
函数要容易得多。
$ pip install django-tables2
并阅读文档 here.