Fixed #8869 -- Fixed comments templates to be well-formed XHTML.

Based on a patch from zgoda.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@9117 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2008-10-05 05:06:26 +00:00
parent 18f13aeeab
commit 16d0a615c4
5 changed files with 14 additions and 14 deletions

View File

@ -6,9 +6,9 @@
<h1>Really make this comment public?</h1> <h1>Really make this comment public?</h1>
<blockquote>{{ comment|linebreaks }}</blockquote> <blockquote>{{ comment|linebreaks }}</blockquote>
<form action="." method="post"> <form action="." method="post">
<input type="hidden" name="next" value="{{ next }}" id="next"> <input type="hidden" name="next" value="{{ next }}" id="next" />
<p class="submit"> <p class="submit">
<input type="submit" name="submit" value="Approve"> or <a href="{{ comment.permalink }}">cancel</a> <input type="submit" name="submit" value="Approve" /> or <a href="{{ comment.permalink }}">cancel</a>
</p> </p>
</form> </form>
{% endblock %} {% endblock %}

View File

@ -6,9 +6,9 @@
<h1>Really remove this comment?</h1> <h1>Really remove this comment?</h1>
<blockquote>{{ comment|linebreaks }}</blockquote> <blockquote>{{ comment|linebreaks }}</blockquote>
<form action="." method="post"> <form action="." method="post">
<input type="hidden" name="next" value="{{ next }}" id="next"> <input type="hidden" name="next" value="{{ next }}" id="next" />
<p class="submit"> <p class="submit">
<input type="submit" name="submit" value="Remove"> or <a href="{{ comment.permalink }}">cancel</a> <input type="submit" name="submit" value="Remove" /> or <a href="{{ comment.permalink }}">cancel</a>
</p> </p>
</form> </form>
{% endblock %} {% endblock %}

View File

@ -6,9 +6,9 @@
<h1>Really flag this comment?</h1> <h1>Really flag this comment?</h1>
<blockquote>{{ comment|linebreaks }}</blockquote> <blockquote>{{ comment|linebreaks }}</blockquote>
<form action="." method="post"> <form action="." method="post">
<input type="hidden" name="next" value="{{ next }}" id="next"> <input type="hidden" name="next" value="{{ next }}" id="next" />
<p class="submit"> <p class="submit">
<input type="submit" name="submit" value="Flag"> or <a href="{{ comment.permalink }}">cancel</a> <input type="submit" name="submit" value="Flag" /> or <a href="{{ comment.permalink }}">cancel</a>
</p> </p>
</form> </form>
{% endblock %} {% endblock %}

View File

@ -23,7 +23,7 @@
{% block content %} {% block content %}
{% if empty %} {% if empty %}
<p id="nocomments">No comments to moderate.</div> <p id="nocomments">No comments to moderate.</p>
{% else %} {% else %}
<div id="content-main"> <div id="content-main">
<div class="module" id="changelist"> <div class="module" id="changelist">
@ -45,12 +45,12 @@
<tr class="{% cycle 'row1' 'row2' %}"> <tr class="{% cycle 'row1' 'row2' %}">
<td class="actions"> <td class="actions">
<form action="{% url comments-approve comment.pk %}" method="post"> <form action="{% url comments-approve comment.pk %}" method="post">
<input type="hidden" name="next" value="{% url comments-moderation-queue %}"> <input type="hidden" name="next" value="{% url comments-moderation-queue %}" />
<input class="approve submit" type="submit" name="submit" value="Approve"> <input class="approve submit" type="submit" name="submit" value="Approve" />
</form> </form>
<form action="{% url comments-delete comment.pk %}" method="post"> <form action="{% url comments-delete comment.pk %}" method="post">
<input type="hidden" name="next" value="{% url comments-moderation-queue %}"> <input type="hidden" name="next" value="{% url comments-moderation-queue %}" />
<input class="remove submit" type="submit" name="submit" value="Remove"> <input class="remove submit" type="submit" name="submit" value="Remove" />
</form> </form>
</td> </td>
<td>{{ comment.name }}</td> <td>{{ comment.name }}</td>

View File

@ -11,7 +11,7 @@
<h1>Preview your comment</h1> <h1>Preview your comment</h1>
<blockquote>{{ comment|linebreaks }}</blockquote> <blockquote>{{ comment|linebreaks }}</blockquote>
<p> <p>
and <input type="submit" name="submit" value="Post your comment" id="submit"> or make changes: and <input type="submit" name="submit" value="Post your comment" id="submit" /> or make changes:
</p> </p>
{% endif %} {% endif %}
{% for field in form %} {% for field in form %}
@ -27,8 +27,8 @@
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<p class="submit"> <p class="submit">
<input type="submit" name="submit" class="submit-post" value="Post"> <input type="submit" name="submit" class="submit-post" value="Post" />
<input type="submit" name="submit" class="submit-preview" value="Preview"> <input type="submit" name="submit" class="submit-preview" value="Preview" />
</p> </p>
</form> </form>
{% endblock %} {% endblock %}