Ticket #8870: contrib-comments-templates-style.diff
File contrib-comments-templates-style.diff, 5.7 KB (added by , 16 years ago) |
---|
-
django/contrib/comments/templates/comments/approve.html
5 5 {% block content %} 6 6 <h1>Really make this comment public?</h1> 7 7 <blockquote>{{ comment|escape|linebreaks }}</blockquote> 8 <form action="." method=" POST">8 <form action="." method="post"> 9 9 <input type="hidden" name="next" value="{{ next|escape }}" id="next"> 10 10 <p class="submit"> 11 11 <input type="submit" name="submit" value="Approve"> or <a href="{{ comment.permalink }}">cancel</a> 12 12 </p> 13 13 </form> 14 {% endblock %} 15 No newline at end of file 14 {% endblock %} -
django/contrib/comments/templates/comments/reply_preview.html
4 4 5 5 {% block content %} 6 6 {% load comments %} 7 <form action="{% comment_form_target %}" method=" POST">7 <form action="{% comment_form_target %}" method="post"> 8 8 {% if form.errors %} 9 9 <h1>Please correct the error{{ form.errors|pluralize }} below</h1> 10 10 {% else %} -
django/contrib/comments/templates/comments/preview.html
4 4 5 5 {% block content %} 6 6 {% load comments %} 7 <form action="{% comment_form_target %}" method=" POST">7 <form action="{% comment_form_target %}" method="post"> 8 8 {% if form.errors %} 9 9 <h1>Please correct the error{{ form.errors|pluralize }} below</h1> 10 10 {% else %} … … 31 31 <input type="submit" name="submit" class="submit-preview" value="Preview"> 32 32 </p> 33 33 </form> 34 {% endblock %} 35 No newline at end of file 34 {% endblock %} -
django/contrib/comments/templates/comments/delete.html
5 5 {% block content %} 6 6 <h1>Really remove this comment?</h1> 7 7 <blockquote>{{ comment|escape|linebreaks }}</blockquote> 8 <form action="." method=" POST">8 <form action="." method="post"> 9 9 <input type="hidden" name="next" value="{{ next|escape }}" id="next"> 10 10 <p class="submit"> 11 11 <input type="submit" name="submit" value="Remove"> or <a href="{{ comment.permalink }}">cancel</a> 12 12 </p> 13 13 </form> 14 {% endblock %} 15 No newline at end of file 14 {% endblock %} -
django/contrib/comments/templates/comments/form.html
1 1 {% load comments %} 2 <form action="{% comment_form_target %}" method=" POST">2 <form action="{% comment_form_target %}" method="post"> 3 3 {% for field in form %} 4 4 {% if field.is_hidden %} 5 5 {{ field }} -
django/contrib/comments/templates/comments/moderation_queue.html
44 44 {% for comment in comments %} 45 45 <tr class="{% cycle 'row1' 'row2' %}"> 46 46 <td class="actions"> 47 <form action="{% url comments-approve comment.pk %}" method=" POST">47 <form action="{% url comments-approve comment.pk %}" method="post"> 48 48 <input type="hidden" name="next" value="{% url comments-moderation-queue %}"> 49 49 <input class="approve submit" type="submit" name="submit" value="Approve"> 50 50 </form> 51 <form action="{% url comments-delete comment.pk %}" method=" POST">51 <form action="{% url comments-delete comment.pk %}" method="post"> 52 52 <input type="hidden" name="next" value="{% url comments-moderation-queue %}"> 53 53 <input class="remove submit" type="submit" name="submit" value="Remove"> 54 54 </form> -
django/contrib/comments/templates/comments/flag.html
5 5 {% block content %} 6 6 <h1>Really flag this comment?</h1> 7 7 <blockquote>{{ comment|escape|linebreaks }}</blockquote> 8 <form action="." method=" POST">8 <form action="." method="post"> 9 9 <input type="hidden" name="next" value="{{ next|escape }}" id="next"> 10 10 <p class="submit"> 11 11 <input type="submit" name="submit" value="Flag"> or <a href="{{ comment.permalink }}">cancel</a> 12 12 </p> 13 13 </form> 14 {% endblock %} 15 No newline at end of file 14 {% endblock %} -
django/contrib/comments/templates/comments/reply.html
1 1 {% load comments %} 2 <form action="{% comment_form_target %}" method=" POST">2 <form action="{% comment_form_target %}" method="post"> 3 3 {% for field in form %} 4 4 {% if field.is_hidden %} 5 5 {{ field }}