{% block comments %}
{% if comment %}
<div class="comment preview{% if not comment.is_public %} private{% endif %}">
- You said:<br/>
+ <span class="commenter">You said:</span>
+ <div class="comment-body">
{% auto_transform_markup comment %}
+ </div>
</div>
{% endif %}
- <form method="POST" action="">
- <table>
- {{ form.as_table }}
- </table>
- <div><input type="submit" value="Submit Comment" />
- <input type="submit" value="Preview Updated Comment" name="preview" /></div>
- <input type="hidden" name="next" value="{{ next }}" />
- </form>
+ <div class="commentReplyForm">
+ <form method="POST" action="">
+ {{ form.comment.label_tag }}</br/>
+ {{ form.comment }}<br/>
+ {{ form.is_public }}
+ {{ form.is_public.label_tag }}
+ <div>
+ <input type="hidden" name="next" value="{{ next }}" />
+ <input type="submit" value="Submit Comment" />
+ <input type="submit" value="Preview Updated Comment" name="preview" />
+ </div>
+ </form>
+ </div>
{% endblock %}