Changes between Initial Version and Version 1 of Ticket #16031
- Timestamp:
- May 18, 2011, 3:16:14 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16031
- Property Easy pickings set
- Property Triage Stage Unreviewed → Accepted
-
Ticket #16031 – Description
initial v1 1 1 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: 2 2 3 3 {{{ 4 4 {% get_comment_form for event as form %} 5 5 <form action="{% comment_form_target %}" method="post"> … … 10 10 </tr> 11 11 </form> 12 12 }}} 13 13 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: 14 {{{ 14 15 <input type = "submit" name = "post" class = "submit-post" value = "post"> 15 16 17 16 <input type = "submit" name = "preview" class = "submit-preview" value = "preview"> 18 17 }}} 19 18 or at least correct the class for the preview button to submit-preview instead of submit-post.