{% from "partials/css_helpers.html" import reply_kind_accent %}
{% if reply.reply_href %} {{ reply.id_label }} {% else %} {{ reply.id_label }} {% endif %} {% if reply.author_href %} {% with user_link_href = reply.author_href, user_link_username = reply.created_by, user_link_label = reply.created_by, user_link_class = "fw-semibold text-decoration-none" %} {% include "partials/hover_card_user_link.html" %} {% endwith %} {% else %} {{ reply.created_by }} {% endif %} {% if reply.reply_href %} {{ reply.created_at | humantime }} {% else %} {{ reply.created_at | humantime }} {% endif %}
{% if edit_error %} {% endif %}
{% if form.reply_root %} {% endif %} {% if form.sort %} {% endif %} {% set reply_form_prefix = "edit-" ~ reply.number %} {% include "repo/partials/thread_reply_kind_status_controls.html" %} {% if form.can_edit_body %}
{% with textarea_id=("reply-edit-body-" ~ reply.number), textarea_name="body", textarea_rows=8, textarea_value=form.body, textarea_classes="form-control form-control-sm", textarea_autofocus=true %} {% include "partials/markdown_preview_tabs.html" %} {% endwith %}
{% else %}
Body
{% if reply.body and reply.body | trim != "" %}
{{ reply.body | markdown | linkify(is_private=linkify_is_private, current_team_slug=linkify_current_team_slug) }}
{% else %}

No body.

{% endif %}
{% endif %}