Ticket #9141: 9141.diff

File 9141.diff, 2.4 KB (added by Thejaswi Puthraya, 16 years ago)

svn diff against the latest checkout

  • django/contrib/comments/templates/comments/reply_preview.html

     
    1 {% extends "comments/base.html" %}
    2 
    3 {% block title %}Preview your comment{% endblock %}
    4 
    5 {% block content %}
    6   {% load comments %}
    7   <form action="{% comment_form_target %}" method="post">
    8     {% if form.errors %}
    9       <h1>Please correct the error{{ form.errors|pluralize }} below</h1>
    10     {% else %}
    11       <h1>Preview your comment</h1>
    12       <blockquote>{{ comment|linebreaks }}</blockquote>
    13       <p>
    14         and <input type="submit" name="submit" value="Post your comment" id="submit"> or make changes:
    15       </p>
    16     {% endif %}
    17     {% for field in form %}
    18       {% if field.is_hidden %}
    19         {{ field }}
    20       {% else %}
    21         <p
    22           {% if field.errors %} class="error"{% endif %}
    23           {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}>
    24           {% if field.errors %}{{ field.errors }}{% endif %}
    25           {{ field.label_tag }} {{ field }}
    26         </p>
    27       {% endif %}
    28     {% endfor %}
    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">
    32     </p>
    33   </form>
    34 {% endblock %}
  • django/contrib/comments/templates/comments/reply.html

     
    1 {% load comments %}
    2 <form action="{% comment_form_target %}" method="post">
    3   {% for field in form %}
    4     {% if field.is_hidden %}
    5       {{ field }}
    6     {% else %}
    7       <p
    8         {% if field.errors %} class="error"{% endif %}
    9         {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}>
    10         {% if field.errors %}{{ field.errors }}{% endif %}
    11         {{ field.label_tag }} {{ field }}
    12       </p>
    13     {% endif %}
    14   {% endfor %}
    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">
    18   </p>
    19 </form>
Back to Top