summaryrefslogtreecommitdiffstats
path: root/askbot/skins/common/templates/question/answer_vote_buttons.html
blob: 242bf2be212460c2a9f39791ad79e678cedafe06 (plain)
1
2
3
4
5
6
7
8
9
10
{{ macros.post_vote_buttons(post = answer) }}
<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>