在Django模板中执行html函数

时间:2017-05-30 07:43:54

标签: html django django-templates

我有一个django template,只有一个按钮。我想要的是,当我点击这个按钮时,它将包含另一个模板并显示内容。

<button data-toggle="modal" id="myClickButton" href="#dbModal" type="button" class="btn btn-info pull-right custom" >Bookmark</button>

以上是我的按钮,它与模态链接。在模态中,我使用Django template tag将字典保存在文件中。所以我将新的html包含在下面的参数中。

 {% include "app/return_info.html"  with "dict" "String"}

我尝试了几种方法,但Django运行此include命令而不等待按钮,当我单击按钮时,没有任何反应。显示模态但不保存任何数据。

0 个答案:

没有答案