{% for topic in topics %} {% set replies = frappe.get_all("Discussion Reply", {"topic": topic.name}, ["reply", "owner", "creation"], order_by="creation")%} {% if replies %}
{{ _("Back") }}
{{ topic.title }}
{% for reply in replies %} {% include "frappe/templates/discussions/reply_card.html" %} {% if loop.index != replies | length %}
{% endif %} {% endfor %} {% if frappe.session.user == "Guest" or (condition is defined and not condition) %}
{{ _("Want to join the discussion?") }} {% if frappe.session.user == "Guest" %}
{{ _("Log In") }}
{% elif not condition %}
{{ button_name }}
{% endif %}
{% else %} {% include "frappe/templates/discussions/comment_box.html" %} {% endif %}
{% endif %} {% endfor %}