Commit 4393fea6 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

[1.0.X] Fixed #8869 -- Fixed comments templates to be well-formed XHTML.

Based on a patch from zgoda.

Backport of r9117 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9124 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 769709e9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6,9 +6,9 @@
  <h1>Really make this comment public?</h1>
  <blockquote>{{ comment|linebreaks }}</blockquote>
  <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">
      <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>
  </form>
{% endblock %}
+2 −2
Original line number Diff line number Diff line
@@ -6,9 +6,9 @@
  <h1>Really remove this comment?</h1>
  <blockquote>{{ comment|linebreaks }}</blockquote>
  <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">
      <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>
  </form>
{% endblock %}
+2 −2
Original line number Diff line number Diff line
@@ -6,9 +6,9 @@
  <h1>Really flag this comment?</h1>
  <blockquote>{{ comment|linebreaks }}</blockquote>
  <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">
      <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>
  </form>
{% endblock %}
+5 −5
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@

{% block content %}
{% if empty %}
  <p id="nocomments">No comments to moderate.</div>
  <p id="nocomments">No comments to moderate.</p>
{% else %}
<div id="content-main">
  <div class="module" id="changelist">
@@ -45,12 +45,12 @@
        <tr class="{% cycle 'row1' 'row2' %}">
          <td class="actions">
            <form action="{% url comments-approve comment.pk %}" method="post">
              <input type="hidden" name="next" value="{% url comments-moderation-queue %}">
              <input class="approve submit" type="submit" name="submit" value="Approve">
              <input type="hidden" name="next" value="{% url comments-moderation-queue %}" />
              <input class="approve submit" type="submit" name="submit" value="Approve" />
            </form>
            <form action="{% url comments-delete comment.pk %}" method="post">
              <input type="hidden" name="next" value="{% url comments-moderation-queue %}">
              <input class="remove submit" type="submit" name="submit" value="Remove">
              <input type="hidden" name="next" value="{% url comments-moderation-queue %}" />
              <input class="remove submit" type="submit" name="submit" value="Remove" />
            </form>
          </td>
          <td>{{ comment.name }}</td>
+3 −3
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
      <h1>Preview your comment</h1>
      <blockquote>{{ comment|linebreaks }}</blockquote>
      <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>
    {% endif %}
    {% for field in form %}
@@ -27,8 +27,8 @@
      {% endif %}
    {% endfor %}
    <p class="submit">
      <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-post" value="Post" />
      <input type="submit" name="submit" class="submit-preview" value="Preview" />
    </p>
  </form>
{% endblock %}