<%= ts("New comment on %{name}", :name => @name) %>
<%= error_messages_for :comment %>
<%= render :partial => 'comments/comment_form', :locals => {
:comment => @comment,
:commentable => @commentable,
:button_name => ts("Comment")
}
%>
<%= link_to ts("Back"), @commentable.is_a?(Tag) ? tag_path(@commentable) : polymorphic_path(@commentable) %>