Changeset 9000
- Timestamp:
- 09/10/08 00:14:59 (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/moderation_queue.html (modified) (2 diffs)
- django/trunk/django/contrib/comments/templates/comments/preview.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
r8557 r9000 5 5 {% block content %} 6 6 <h1>Really make this comment public?</h1> 7 <blockquote>{{ comment| escape|linebreaks }}</blockquote>7 <blockquote>{{ comment|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 }}" id="next"> 10 10 <p class="submit"> 11 11 <input type="submit" name="submit" value="Approve"> or <a href="{{ comment.permalink }}">cancel</a> django/trunk/django/contrib/comments/templates/comments/delete.html
r8557 r9000 5 5 {% block content %} 6 6 <h1>Really remove this comment?</h1> 7 <blockquote>{{ comment| escape|linebreaks }}</blockquote>7 <blockquote>{{ comment|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 }}" id="next"> 10 10 <p class="submit"> 11 11 <input type="submit" name="submit" value="Remove"> or <a href="{{ comment.permalink }}">cancel</a> django/trunk/django/contrib/comments/templates/comments/flag.html
r8557 r9000 5 5 {% block content %} 6 6 <h1>Really flag this comment?</h1> 7 <blockquote>{{ comment| escape|linebreaks }}</blockquote>7 <blockquote>{{ comment|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 }}" id="next"> 10 10 <p class="submit"> 11 11 <input type="submit" name="submit" value="Flag"> or <a href="{{ comment.permalink }}">cancel</a> django/trunk/django/contrib/comments/templates/comments/moderation_queue.html
r8557 r9000 54 54 </form> 55 55 </td> 56 <td>{{ comment.name |escape}}</td>57 <td>{{ comment.comment|truncatewords:"50" |escape}}</td>58 <td>{{ comment.email |escape}}</td>59 <td>{{ comment.url |escape}}</td>56 <td>{{ comment.name }}</td> 57 <td>{{ comment.comment|truncatewords:"50" }}</td> 58 <td>{{ comment.email }}</td> 59 <td>{{ comment.url }}</td> 60 60 <td> 61 61 <img … … 64 64 /> 65 65 </td> 66 <td>{{ comment.ip_address |escape}}</td>66 <td>{{ comment.ip_address }}</td> 67 67 <td>{{ comment.submit_date|date:"F j, P" }}</td> 68 68 </tr> django/trunk/django/contrib/comments/templates/comments/preview.html
r8557 r9000 10 10 {% else %} 11 11 <h1>Preview your comment</h1> 12 <blockquote>{{ comment| escape|linebreaks }}</blockquote>12 <blockquote>{{ comment|linebreaks }}</blockquote> 13 13 <p> 14 14 and <input type="submit" name="submit" value="Post your comment" id="submit"> or make changes: django/trunk/django/contrib/comments/templates/comments/reply_preview.html
r8557 r9000 10 10 {% else %} 11 11 <h1>Preview your comment</h1> 12 <blockquote>{{ comment| escape|linebreaks }}</blockquote>12 <blockquote>{{ comment|linebreaks }}</blockquote> 13 13 <p> 14 14 and <input type="submit" name="submit" value="Post your comment" id="submit"> or make changes:
