{% if answer.id and question.solution == answer %}

{{_('Chosen Solution')}}

{% elif answer.id and answer in helpful_replies %} {# Note: this is only here as a flag for tests #} {% elif answer.is_spam %}

{{ _('Marked as spam') }}

{% endif %}
{% if is_preview %} {# Don't use cached content_parsed #} {{ answer.content|wiki_to_html(locale=request.LANGUAGE_CODE) }} {% else %} {{ answer.content_parsed|safe }} {% endif %}
{% for image in answer.get_images() %} {{ attachment(image, user, False) }} {% endfor %}
{% if answer.updated_by %}

{{ _('Modified {datetime} by {name}')|fe(name=display_name(answer.updated_by), datetime=datetimeformat(answer.updated, format='longdatetime')) }}

{% endif %}