Ticket #8869: contrib-comments-templates-htmlcompat.diff
File contrib-comments-templates-htmlcompat.diff, 5.7 KB (added by , 16 years ago) |
---|
-
django/contrib/comments/templates/comments/approve.html
6 6 <h1>Really make this comment public?</h1> 7 7 <blockquote>{{ comment|escape|linebreaks }}</blockquote> 8 8 <form action="." method="POST"> 9 <input type="hidden" name="next" value="{{ next|escape }}" id="next" >9 <input type="hidden" name="next" value="{{ next|escape }}" id="next" /> 10 10 <p class="submit"> 11 <input type="submit" name="submit" value="Approve" > or <a href="{{ comment.permalink }}">cancel</a>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/preview.html
27 27 {% endif %} 28 28 {% endfor %} 29 29 <p class="submit"> 30 <input type="submit" name="submit" class="submit-post" value="Post" >31 <input type="submit" name="submit" class="submit-preview" value="Preview" >30 <input type="submit" name="submit" class="submit-post" value="Post" /> 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
6 6 <h1>Really remove this comment?</h1> 7 7 <blockquote>{{ comment|escape|linebreaks }}</blockquote> 8 8 <form action="." method="POST"> 9 <input type="hidden" name="next" value="{{ next|escape }}" id="next" >9 <input type="hidden" name="next" value="{{ next|escape }}" id="next" /> 10 10 <p class="submit"> 11 <input type="submit" name="submit" value="Remove" > or <a href="{{ comment.permalink }}">cancel</a>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/moderation_queue.html
23 23 24 24 {% block content %} 25 25 {% if empty %} 26 <p id="nocomments">No comments to moderate.</ div>26 <p id="nocomments">No comments to moderate.</p> 27 27 {% else %} 28 28 <div id="content-main"> 29 29 <div class="module" id="changelist"> … … 45 45 <tr class="{% cycle 'row1' 'row2' %}"> 46 46 <td class="actions"> 47 47 <form action="{% url comments-approve comment.pk %}" method="POST"> 48 <input type="hidden" name="next" value="{% url comments-moderation-queue %}" >49 <input class="approve submit" type="submit" name="submit" value="Approve" >48 <input type="hidden" name="next" value="{% url comments-moderation-queue %}" /> 49 <input class="approve submit" type="submit" name="submit" value="Approve" /> 50 50 </form> 51 51 <form action="{% url comments-delete comment.pk %}" method="POST"> 52 <input type="hidden" name="next" value="{% url comments-moderation-queue %}" >53 <input class="remove submit" type="submit" name="submit" value="Remove" >52 <input type="hidden" name="next" value="{% url comments-moderation-queue %}" /> 53 <input class="remove submit" type="submit" name="submit" value="Remove" /> 54 54 </form> 55 55 </td> 56 56 <td>{{ comment.name|escape }}</td> -
django/contrib/comments/templates/comments/flag.html
6 6 <h1>Really flag this comment?</h1> 7 7 <blockquote>{{ comment|escape|linebreaks }}</blockquote> 8 8 <form action="." method="POST"> 9 <input type="hidden" name="next" value="{{ next|escape }}" id="next" >9 <input type="hidden" name="next" value="{{ next|escape }}" id="next" /> 10 10 <p class="submit"> 11 <input type="submit" name="submit" value="Flag" > or <a href="{{ comment.permalink }}">cancel</a>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
13 13 {% endif %} 14 14 {% endfor %} 15 15 <p class="submit"> 16 <input type="submit" name="submit" class="submit-post" value="Reply" >17 <input type="submit" name="submit" class="submit-preview" value="Preview" >16 <input type="submit" name="submit" class="submit-post" value="Reply" /> 17 <input type="submit" name="submit" class="submit-preview" value="Preview" /> 18 18 </p> 19 19 </form>