【发布时间】:2020-12-09 10:44:53
【问题描述】:
show_more.html(这是Post的模板,看cmets并添加cmets)
<hr>
{% for comment in comments %}
<div class="comment">
<p class="info">
{{ comment.created_at|naturaltime }}
Commented by :- <a href="{% url 'mains:show_profile' comment.commented_by.id %}"></a> # I think the problem is in this line. BUT i've tried everything.
{{ topic.post_owner }}
</p>
{{ comment.comment_body|linebreaks }}
</div>
{% empty %}
<p>There are no comments yet.</p>
{% endfor %}
我已经尝试了一切,但没有任何效果,请帮助我。非常感谢您的帮助。
【问题讨论】:
-
请将 urls.py 也添加到问题中
标签: html django django-templates