1

我的 HTML 模板的顶部包含:

{% load inplace_edit %}

标题部分包含:

{% inplace_static %}

然后在我的身体内容中我正在做:

{% inplace_edit "action.action_state" %}

但它不起作用。我已经安装了:

'bootstrap3',
'inplaceeditform_bootstrap',   # it is very important that this app is placed before inplaceeditform and inplaceeditform_extra_fields
'inplaceeditform',
'inplaceeditform_extra_fields',
'bootstrap3_datetime',

我已经尝试过'django.template.loaders.eggs.Loader',启用和禁用。

它显示为可点击的文本,但是当我单击/双击时没有任何反应。我如何让它工作?

谢谢,

羟乙基纤维素

4

1 回答 1

1

在尝试了@Goin 的建议后,我发现我的 JQuery 文件没有被正确导入。不得不搬家:

<script type="text/javascript" charset="utf-8" src="{% static 'srt/js/jquery-1.10.2.min.js' %}"></script>
<script type="text/javascript" charset="utf-8" src="{% static 'srt/js/jquery-ui.min.js' %}"></script>

到我的标题块的顶部。任何使用 Bootstrap 的人,请确保将 JQuery 作为模板中的第一件事。

谢谢

于 2013-11-13T17:55:29.023 回答