]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/node/accept_button.html
Merge pull request #26 from udacity/remove_dj_version
[osqa.git] / forum / skins / default / templates / node / accept_button.html
index beff321f325504f1a7e01b12206fad7dab2c6a27..94f0f541ae52ff2c73ea25b14c883ea40e87649e 100644 (file)
@@ -1,7 +1,22 @@
-{% load i18n %}\r
-\r
-{% if can_accept %}\r
-    <a id="accept-answer-{{ answer.id }}" class="ajax-command accept-answer{% if answer.accepted %} on{% endif %}"\r
-        title="{% if answer.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
-{% endif %}
\ No newline at end of file
+{% load i18n %}
+
+{% if can_accept %}
+    <a id="accept-answer-{{ answer.id }}" class="ajax-command accept-answer{% if answer.nis.accepted %} on{% endif %}"
+      title=" {% if answer.nis.accepted %}
+              {% blocktrans with answer.nstate.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 %}"
+              bn:on="{% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}"
+              bn:off="{% trans "mark this answer as the accepted answer" %}"
+       href="{% url "accept_answer" id=answer.id %}" rel="nofollow">
+    </a>
+{% else %}
+    {% if answer.nis.accepted %}
+      <a class="accept-answer on"
+        title="{% blocktrans with answer.nstate.accepted.by.username as who %}{{ who }} has selected this answer as the correct answer{% endblocktrans %}"
+        href="{% url "accept_answer" id=answer.id %}" rel="nofollow">
+      </a>
+    {% endif %}
+{% endif %}
+