]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/accept_button.html
OSQA-374
[osqa.git] / forum / skins / default / templates / node / accept_button.html
1 {% load i18n %}\r
2 \r
3 {% if can_accept %}\r
4     <a id="accept-answer-{{ answer.id }}" class="ajax-command accept-answer{% if answer.nis.accepted %} on{% endif %}"\r
5         title="{% if answer.nis.accepted %}{% blocktrans with answer.accepted_by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}{% else %}{% trans "mark this answer as the accepted answer" %}{% endif %}"\r
6          href="{% url accept_answer id=answer.id %}" rel="nofollow"> </a>\r
7 {% else %}\r
8     {% if answer.nis.accepted %}\r
9         <a class="accept-answer on"></a>\r
10     {% endif %}\r
11 {% endif %}\r
12 \r