﻿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
9959	Documentation Comments Framework	msm	nobody	"Hello,

I think there's a small typo in http://docs.djangoproject.com/en/dev/ref/contrib/comments/#rendering-a-custom-comment-form

To really get a preview in the example the value of the name attribute of the input element should be changed:

from:
{{{
{% get_comment_form for event as form %}
<form action=""{% comment_form_target %}"" method=""POST"">
  {{ form }}
  <p class=""submit"">
    <input type=""submit"" name=""submit"" class=""submit-post"" value=""Preview"">
  </p>
</form>
}}}

to:
{{{
{% 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>
}}}

"		closed	Documentation	1.0		fixed			Accepted	1	0	0	0	0	0
