我刚刚实施了django-comments。
settings.py
INSTALLED_APPS = (
...
'django.contrib.comments',
)
product_detail.html
{% get_comment_count for product as comment_count %}
<p>This event has {{ comment_count }} comments.</p>
{% render_comment_list for product %}
{% render_comment_form for product %}
模板/评论/ form.html
{% load comments i18n %}
{% if user.is_authenticated %}
<form action="{% comment_form_target %}" method="post">
{% csrf_token %}
<input type="hidden" name="next" value="/product/{{ product.id }}/" />
{% for field in form %}
{% if field.is_hidden %}
{{ field }}
{% else %}
{% if field.name != "name" and field.name != "email" and field.name != "url" %}
{% if field.errors %}{{ field.errors }}{% endif %}
<p {% if field.errors %} class="error"{% endif %} {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}>
{{ field }}
</p>
{% endif %}
{% endif %}
{% endfor %}
<input type="submit" name="post" class="submit-post" value="{% trans "Add Comment" %}" />
</form>
{% else %}
I'm sorry, but you must be <a href="javascript:alert('send to login page')">logged in</a> to submit comments.
{% endif %}
模板/评论/ list.html
<div class="comment_start"></div>
{% for comment in comment_list reversed %}
<div class="comment">
{{ comment.comment }}
(from <a href="/user/{{ comment.user }}/">{{ comment.user }}</a> - {{ comment.submit_date|timesince }} ago)
</div>
{% endfor %}
当表单呈现时,我看到这个HTML代码:
1 <form action="/comments/post/" method="post">
2 <div style='display:none'><input type='hidden' name='csrfmiddlewaretoken' value='39cad78f1b4adef30adb536717cesd71' /></div>
3 <input type="hidden" name="next" value="/product/1/" />
4 <input type="hidden" name="content_type" value="myapp.product" id="id_content_type" />
5 <input type="hidden" name="object_pk" value="2" id="id_object_pk" />
6 <input type="hidden" name="timestamp" value="1310776114" id="id_timestamp" />
7 <input type="hidden" name="security_hash" value="34efe5f91239db95f429d07ec21a2926bf22a905b65" id="id_security_hash" />
8 <p><textarea id="id_comment" rows="10" cols="40" name="comment"></textarea></p>
9 <p style="display:none;">
10 <input type="text" name="honeypot" id="id_honeypot" />
11 </p>
12 <input type="submit" name="post" class="submit-post" value="Add Comment" />
13 </form>
问题:
value="/product/{{ product.id }}/
谢谢大家。
答案 0 :(得分:2)
第4行好吗?我认为至少没有问题;)但当然总是测试你的代码:)
删除有点hackish,但这也是因为模板语言有点受限。如果您有最新版本,则可以使用in运算符:https://docs.djangoproject.com/en/dev/ref/templates/builtins/#in-operator
硬编码不行,请使用url templatetag: https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#url
你可以用Ajax做到这一点。我使用Dajax(django app; http://www.dajaxproject.com)为评论应用程序做了这个,只是从dajax函数调用视图,但你也可以从另一个函数调用它。我的解决方案是让Dajax渲染一个html片段,然后将其发回,并使用主模板中的片段。这样布局代码就在一个地方(尽管不是很有网络使用效率)。