{% if post_answer.LastEditorUserId == post_answer.OwnerUserId %}
{% with user=post_answer.LastEditorUserId|user %}
edited {{ post_answer.LastEditDate|datetime }}
{% 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 %}
{% 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 %}
{% 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 %}