summaryrefslogtreecommitdiffstats
path: root/askbot/templates/question/answer_vote_buttons.html
blob: cd6f62f0d4e16f4c0fa9a29d0b72c0144534fec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ macros.post_vote_buttons(post = answer) }}
{% if settings.ACCEPTING_ANSWERS_ENABLED %}
<div
    id="answer-img-accept-{{ answer.id }}"
    class="answer-img-accept"
        {% if answer.accepted() %}
    title="{% trans %}this answer has been selected as correct{% endtrans %}"
        {% else %}
    title="{% trans %}mark this answer as correct (click again to undo){% endtrans %}"
        {% endif %}
></div>
{% endif %}