Changeset 9117
- Timestamp:
- 10/05/08 00:06:26 (3 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/moderation_queue.html (modified) (2 diffs)
- django/trunk/django/contrib/comments/templates/comments/preview.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/comments/templates/comments/approve.html
r9050 r9117 7 7 <blockquote>{{ comment|linebreaks }}</blockquote> 8 8 <form action="." method="post"> 9 <input type="hidden" name="next" value="{{ next }}" id="next" >9 <input type="hidden" name="next" value="{{ next }}" 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> django/trunk/django/contrib/comments/templates/comments/delete.html
r9050 r9117 7 7 <blockquote>{{ comment|linebreaks }}</blockquote> 8 8 <form action="." method="post"> 9 <input type="hidden" name="next" value="{{ next }}" id="next" >9 <input type="hidden" name="next" value="{{ next }}" 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> django/trunk/django/contrib/comments/templates/comments/flag.html
r9050 r9117 7 7 <blockquote>{{ comment|linebreaks }}</blockquote> 8 8 <form action="." method="post"> 9 <input type="hidden" name="next" value="{{ next }}" id="next" >9 <input type="hidden" name="next" value="{{ next }}" 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> django/trunk/django/contrib/comments/templates/comments/moderation_queue.html
r9050 r9117 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"> … … 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> django/trunk/django/contrib/comments/templates/comments/preview.html
r9050 r9117 12 12 <blockquote>{{ comment|linebreaks }}</blockquote> 13 13 <p> 14 and <input type="submit" name="submit" value="Post your comment" id="submit" > or make changes:14 and <input type="submit" name="submit" value="Post your comment" id="submit" /> or make changes: 15 15 </p> 16 16 {% 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>
