{% with user_link_href = review.href, user_link_username = review.username, user_link_label = review.username, user_link_class = "fw-semibold text-decoration-none" %}
{% include "partials/hover_card_user_link.html" %}
{% endwith %}
{% if review.approver_role %}
{% if review.approver_role == "trusted" %}Trusted Approver{% else %}Eligible Approver{% endif %}
{% endif %}
{{ review.status_label }}
{% if review.updated_at %}
{{ review.updated_at | humantime }}
{% else %}
{{ review.created_at | humantime }}
{% endif %}
{{ review.body | markdown | linkify(is_private=linkify_is_private, current_team_slug=linkify_current_team_slug) }}
{% else %}
No review body.
{% endif %}
{% with attachment_section=review.attachments %}
{% include "repo/partials/attachments.html" %}
{% endwith %}