var $answer = $('#answer-container-' + id);\r
$answer.addClass('accepted-answer');\r
$answer.find('.accept-answer').addClass('on');\r
+ $answer.find('.accept-answer').attr('title', $answer.find('.accept-answer').attr('bn:on'));\r
},\r
\r
unmark_accepted: function(id) {\r
var $answer = $('#answer-container-' + id);\r
$answer.removeClass('accepted-answer');\r
$answer.find('.accept-answer').removeClass('on');\r
+ $answer.find('.accept-answer').attr('title', $answer.find('.accept-answer').attr('bn:off'));\r
},\r
\r
remove_comment: function(id) {\r
\r
{% if can_accept %}\r
<a id="accept-answer-{{ answer.id }}" class="ajax-command accept-answer{% if answer.nis.accepted %} on{% endif %}"\r
- 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
- href="{% url accept_answer id=answer.id %}" rel="nofollow"> </a>\r
+ title=" {% if answer.nis.accepted %}\r
+ {% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}\r
+ {% else %}\r
+ {% trans "mark this answer as the accepted answer" %}\r
+ {% endif %}"\r
+ bn:on="{% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}"\r
+ bn:off="{% trans "mark this answer as the accepted answer" %}"\r
+ href="{% url accept_answer id=answer.id %}" rel="nofollow"> \r
+ </a>\r
{% else %}\r
{% if answer.nis.accepted %}\r
- <a class="accept-answer on"></a>\r
+ <a class="accept-answer on"\r
+ title="{% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}"\r
+ href="{% url accept_answer id=answer.id %}" rel="nofollow"> \r
+ </a>\r
{% endif %}\r
{% endif %}\r
\r