Changeset 9050
- Timestamp:
- 09/16/08 01:15:26 (4 months ago)
- Files:
-
- django/trunk/django/contrib/comments/templates/comments/approve.html (modified) (1 diff)
- django/trunk/django/contrib/comments/templates/comments/delete.html (modified) (1 diff)
- django/trunk/django/contrib/comments/templates/comments/flag.html (modified) (1 diff)
- django/trunk/django/contrib/comments/templates/comments/form.html (modified) (1 diff)
- django/trunk/django/contrib/comments/templates/comments/moderation_queue.html (modified) (1 diff)
- django/trunk/django/contrib/comments/templates/comments/preview.html (modified) (1 diff)
- django/trunk/django/contrib/comments/templates/comments/reply.html (modified) (1 diff)
- django/trunk/django/contrib/comments/templates/comments/reply_preview.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/comments/templates/comments/approve.html
r9000 r9050 6 6 <h1>Really make this comment public?</h1> 7 7 <blockquote>{{ comment|linebreaks }}</blockquote> 8 <form action="." method=" POST">8 <form action="." method="post"> 9 9 <input type="hidden" name="next" value="{{ next }}" id="next"> 10 10 <p class="submit"> django/trunk/django/contrib/comments/templates/comments/delete.html
r9000 r9050 6 6 <h1>Really remove this comment?</h1> 7 7 <blockquote>{{ comment|linebreaks }}</blockquote> 8 <form action="." method=" POST">8 <form action="." method="post"> 9 9 <input type="hidden" name="next" value="{{ next }}" id="next"> 10 10 <p class="submit"> django/trunk/django/contrib/comments/templates/comments/flag.html
r9000 r9050 6 6 <h1>Really flag this comment?</h1> 7 7 <blockquote>{{ comment|linebreaks }}</blockquote> 8 <form action="." method=" POST">8 <form action="." method="post"> 9 9 <input type="hidden" name="next" value="{{ next }}" id="next"> 10 10 <p class="submit"> django/trunk/django/contrib/comments/templates/comments/form.html
r8958 r9050 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 %} django/trunk/django/contrib/comments/templates/comments/moderation_queue.html
r9000 r9050 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"> django/trunk/django/contrib/comments/templates/comments/preview.html
r9000 r9050 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> django/trunk/django/contrib/comments/templates/comments/reply.html
r8557 r9050 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 %} django/trunk/django/contrib/comments/templates/comments/reply_preview.html
r9000 r9050 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>
