{% extends 'base.html' %} {% import 'common.macros' as macros %} {% block title %}Stackdump // {{ site.name }} // {{ result.question.title }}{% endblock %} {% block extrahead %} {% endblock %} {% block body %} {% set r = result %}

{{ r.question.title }}

{{ r.question.score }}

vote{% if r.question.score != 1 %}s{% endif %}

{{ r.answers|length }}

answer{% if r.answers|length != 1 %}s{% endif %}

{{ r.question.body|safe }}
{% if r.question.comments %}
{{ macros.render_comments(r.question, SETTINGS.NUM_OF_DEFAULT_COMMENTS) }}
{% endif %}
{% if r.question.closedDate %}

This question was closed by a moderator on {{ r.question.closedDate|format_datetime }}.

{% endif %}
{% if r.answers|length > 0 %}

{{ r.answers|length }} answer{% if r.answers|length != 1 %}s{% endif %}

{% else %}

There are no answers for this question :(

{% endif %}
{% endblock %}