﻿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
16031	Custom comment form is incomplete and wrong.	ddshore@…	nobody	"When viewing the documentation for the django comment framework (http://docs.djangoproject.com/en/dev/ref/contrib/comments/) this is the example form that is shown:

{{{
{% 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>
}}}
However, the post button is missing, only the preview button appears, and it's class is shown as a post button.   Not sure what the original intention was, but it would probably be better to have both buttons in the documentation: 
{{{
	<input type = ""submit"" name = ""post"" class = ""submit-post"" value = ""post"">
	<input type = ""submit"" name = ""preview"" class = ""submit-preview"" value = ""preview"">
}}}
or at least correct the class for the preview button to submit-preview instead of submit-post."	Cleanup/optimization	new	Documentation	1.3	Normal				Accepted	0	0	0	0	1	
