我刚刚开始使用最新版本的django inplaceedit。它非常有效。
但我想删除它在显示可编辑项目时显示的提示-"启用在线编辑"。有什么简单的方法可以把它取下来吗?
顺便说一句,我搜索了文档,找到了与django inplaceedit 相关的邮件列表。
这是文档中的相关页面,供将来遇到这个问题的人使用。
查看文档中该页面的以下代码示例,将用于就地编辑的css放在页眉中,将js放在正文中。
{% load inplace_edit %}
<html>
<head>
...
{% inplace_css 1 %} {% comment %} or inplace_css 0 {% endcomment %}
</head>
<body>
...
<div id="content">
...
{% inplace_edit "content.name" %}
...
<div class="description">
{% inplace_edit "content.date_initial|date:'d m Y'" %}
{% inplace_edit "content.description|safe" %}
</div>
<div class="body">
{% inplace_edit "content.body|safe|truncatewords_html:15" %}
</div>
</div>
...
<script src="{{ STATIC_URL }}js/jquery.min.js" type="text/javascript"></script>
{% inplace_js 1 1 %} {% comment %} or inplace_js 1 0 {% endcomment %}
</body>
</html>
在上面的例子中,只需用{% inplace_css 0 %}
替换{% inplace_css 1 %}
,用{% inplace_js 1 0 %}
替换{% inplace_js 1 1 %}
,就可以实现inplaceedit v1.3.0中的功能。