diff -u django/contrib/comments/templates/comments/approve.orig.html django/contrib/comments/templates/comments/approve.html
old
|
new
|
|
9 | 9 | <form action="." method="post"> |
10 | 10 | <input type="hidden" name="next" value="{{ next }}" id="next" /> |
11 | 11 | <p class="submit"> |
12 | | <input type="submit" name="submit" value="{% trans "Approve" %}" /> or <a href="{{ comment.permalink }}">cancel</a> |
| 12 | <input type="submit" name="submit" value="{% trans "Approve" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a> |
13 | 13 | </p> |
14 | 14 | </form> |
15 | 15 | {% endblock %} |
diff -u django/contrib/comments/templates/comments/delete.orig.html django/contrib/comments/templates/comments/delete.orig.html
old
|
new
|
|
11 | 11 | <input type="hidden" name="next" value="{{ next }}" id="next" /> |
12 | 12 | {% endif %} |
13 | 13 | <p class="submit"> |
14 | | <input type="submit" name="submit" value="{% trans "Remove" %}" /> or <a href="{{ comment.permalink }}">cancel</a> |
| 14 | <input type="submit" name="submit" value="{% trans "Remove" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a> |
15 | 15 | </p> |
16 | 16 | </form> |
17 | 17 | {% endblock %} |
diff -u django/contrib/comments/templates/comments/flag.orig.html django/contrib/comments/templates/comments/flag.orig.html
old
|
new
|
|
9 | 9 | <form action="." method="post"> |
10 | 10 | <input type="hidden" name="next" value="{{ next }}" id="next" /> |
11 | 11 | <p class="submit"> |
12 | | <input type="submit" name="submit" value="{% trans "Flag" %}" /> or <a href="{{ comment.permalink }}">cancel</a> |
| 12 | <input type="submit" name="submit" value="{% trans "Flag" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a> |
13 | 13 | </p> |
14 | 14 | </form> |
15 | 15 | {% endblock %} |