{% set topics = frappe.get_all("Discussion Topic", {"reference_doctype": doctype, "reference_docname": docname}, ["name", "title"]) %}
{{_('Discussions')}}
Start a Discussion
{{ widgets.DiscussionComment(doctype=doctype, docname=docname) }}
{% for topic in topics %}
{{ topic.title }}
{% set replies = frappe.get_all("Discussion Reply", {"topic": topic.name}, ["reply", "owner", "creation"], order_by="creation")%} {% for reply in replies %} {% include "community/templates/reply_card.html" %} {% endfor %}
{% endfor %} {% if not topics %}

No discussions yet.

{% endif %}