_comment_form.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:2k
源码类别:

Ajax

开发平台:

Others

  1. <% form_remote_tag :url      => comments_path(@article),
  2.                     :position => :bottom,
  3.                     :update   => {:success => 'commentList'},
  4.                     :loading  => "loading()",
  5.                     :complete => "complete(request)",
  6.                     :failure  => "failure(request)",
  7.                     :html     => {:id => 'commentform', :class => 'comments' } 
  8.     do %>
  9. <div id="preview" style="display:none"></div>
  10. <h2 id="formComments-title"><%= _("Leave a comment")%></h2>
  11. <div id="respond" class="post">
  12.   <p>
  13. <label for="comment_author"><%= _("Name %s", content_tag(:small, '('+_('required')+')' ))%></label>
  14. <%= text_field "comment", "author" %> 
  15.   </p>
  16.   <p>
  17. <label for="comment_email"><%= _("Email")%> <%= content_tag('small', "(#{link_to('gravatar', 'http://gravatar.com')} "+ _("enabled") + ")") if this_blog.use_gravatar %> <small>(<%= _("never displayed") %>)</small></label>
  18. <%= text_field "comment", "email" %>
  19. </p>
  20. <p>
  21. <label><%= _("Website")%></label>
  22. <%= text_field "comment", "url" %>
  23. </p>
  24.   <p>
  25.     <label>
  26.       <%= _("Comments")%>:
  27.       <%= content_tag('small', link_to(_("Textile enabled"), "http://hobix.com/textile/")) if this_blog.comment_text_filter.include? 'textile' %>
  28.       <%= content_tag('small', link_to(_("Markdown enabled"), "http://daringfireball.net/projects/markdown/")) if this_blog.comment_text_filter.include? 'markdown' %>
  29.       <br />
  30.     </label>
  31.     <%= text_area 'comment', 'body', :rows => 10 %>
  32.   </p>
  33.   <p class="buttons">
  34.     <%= submit_to_remote('preview', _('Preview') + '!',
  35.                          :update => 'preview',
  36.                          :complete => "Element.show('preview')",
  37.                          :url    => preview_new_comment_path(@article),
  38.  :html => {:class => 'submit', :id => 'form-preview-button'}) %>
  39.     <%= submit_tag _('Submit'), :id => 'form-submit-button', :class => 'submit', :onclick => "$('commentform').onsubmit();this.disabled=true;Element.hide('preview');return false;" %>
  40.     <%= image_tag '/images/theme/spinner.gif', :id => 'comment_loading', :style => 'display:none' %>
  41.   </p>
  42. </div>
  43. <% end %>