﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10445	Custom comment form example doesn't show submit button	nab	Kevin Kubasik	"Django's comments framework: [http://docs.djangoproject.com/en/dev/ref/contrib/comments/#rendering-a-custom-comment-form]

The following snippet doesn't show the submit button:

{{{
{% get_comment_form for event as form %}
<form action=""{% comment_form_target %}"" method=""POST"">
  {{ form }}
  <p class=""submit"">
    <input type=""submit"" name=""preview"" class=""submit-post"" value=""Preview"">
  </p>
</form>
}}}


Should be something of the form:

{{{
{% get_comment_form for event as form %}
<form action=""{% comment_form_target %}"" method=""POST"">
  {{ form }}
    <tr>
      <td></td>
      <td><input type=""submit"" name=""preview"" class=""submit-post"" value=""Preview""></td>
    </tr>
</form>
}}}"		closed	Documentation	1.0		fixed	kkmegapatch		Accepted	1	0	0	1	0	0
