{% if comment.updated %}
{{ comment.created }} – {{ comment.author }}
{# Comments with a question property are not the original question #}
{% if comment.question and not is_my_question %}
{{ comment.num_helpful_votes }}
{% endif %}
{% elif comment.failed %}
Failed
{% else %}
Sending…
{% endif %}
{% if comment.updated %}
{% if comment.id == solution_id %}
Solution ✓
{% else %}
{% if is_my_question and user.username != comment.creator.username %}
This solved my question
{% endif %}
{% endif %}
{% endif %}