Commit 3e2803f3 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

[1.0.x] Fixed #9141 -- Removed two templates from django.contrib.comments that were not being used.

Backport of r9115 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9122 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent e4bc9e1f
Loading
Loading
Loading
Loading
+0 −19
Original line number Diff line number Diff line
{% load comments %}
<form action="{% comment_form_target %}" method="post">
  {% for field in form %}
    {% if field.is_hidden %}
      {{ field }}
    {% else %}
      <p
        {% if field.errors %} class="error"{% endif %}
        {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}>
        {% if field.errors %}{{ field.errors }}{% endif %}
        {{ field.label_tag }} {{ field }}
      </p>
    {% endif %}
  {% endfor %}
  <p class="submit">
    <input type="submit" name="submit" class="submit-post" value="Reply">
    <input type="submit" name="submit" class="submit-preview" value="Preview">
  </p>
</form>
+0 −34
Original line number Diff line number Diff line
{% extends "comments/base.html" %}

{% block title %}Preview your comment{% endblock %}

{% block content %}
  {% load comments %}
  <form action="{% comment_form_target %}" method="post">
    {% if form.errors %}
      <h1>Please correct the error{{ form.errors|pluralize }} below</h1>
    {% else %}
      <h1>Preview your comment</h1>
      <blockquote>{{ comment|linebreaks }}</blockquote>
      <p>
        and <input type="submit" name="submit" value="Post your comment" id="submit"> or make changes:
      </p>
    {% endif %}
    {% for field in form %}
      {% if field.is_hidden %}
        {{ field }}
      {% else %}
        <p
          {% if field.errors %} class="error"{% endif %}
          {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}>
          {% if field.errors %}{{ field.errors }}{% endif %}
          {{ field.label_tag }} {{ field }}
        </p>
      {% endif %}
    {% endfor %}
    <p class="submit">
      <input type="submit" name="submit" class="submit-post" value="Post">
      <input type="submit" name="submit" class="submit-preview" value="Preview">
    </p>
  </form>
{% endblock %}