{{ post_answer.Score }}
{% if post.AcceptedAnswerId == post_answer.Id %}
{% endif %} {% if is_question %}{% endif %}
{{ post_answer.Body|rewrote(to_root) }}
{% if is_question %}
{% endif %}
{% if post_answer.LastEditDate %}
{% if post_answer.LastEditorUserId == post_answer.OwnerUserId %} {% with user=post_answer.LastEditorUserId|user %} {% endwith %} {% else %} {% with user=post_answer.LastEditorUserId|user, action_time="edited " + post_answer.LastEditDate|datetime, action_from_now=False %} {% include "user_card.html" %} {% endwith %} {% endif %}
{% endif %}
{% if is_question %} {% with user=post_answer.OwnerUserId|user, action_time="asked " + post_answer.CreationDate|datetime, action_from_now=False %} {% include "user_card.html" %} {% endwith %} {% else %} {% with user=post_answer.OwnerUserId|user, action_time="answered " + post_answer.CreationDate|datetime, action_from_now=False %} {% include "user_card.html" %} {% endwith %} {% endif %}
{% if post_answer.comments %}
    {% for comment in post_answer.comments %}
  • {% if comment.Score|int %}{{ comment.Score }}{% endif %}
    {% with user=comment.UserId|user, ownerId=post.OwnerUserId %} {% include "single_comment.html" %} {% endwith %}
  • {% endfor %}
{% endif %}