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

Ajax

开发平台:

Others

  1. <%= error_messages_for 'comment' %>
  2. <%= hidden_field_tag 'article_id', @article.id %>
  3. <div id='comment' class='ui-accordion ui-widget ui-helper-reset ui-accordion-icons settings'>
  4.   <h3 class='ui-accordion-header ui-helper-reset ui-state-default ui-corner-top'><span class='ui-icon ui-icon-gear'></span> <%= _("Add a comment")%></h3>
  5.   <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
  6.     <div class='setting'>
  7.       <label for="comment_author" class='float'><%= _("Author")%></label>
  8.       <p class='input_text'>
  9.         <%= text_field 'comment', 'author', :class => 'medium', :value => current_user.display_name %>
  10.       </p>
  11.     </div>
  12.     <div class='setting clear'>
  13.       <label for="comment_email" class='float'><%= _("Email")%></label>
  14.       <p class='input_text'>
  15.         <%= text_field 'comment', 'email', :class => 'medium', :value => current_user.email %>
  16.       </p>
  17.     </div>
  18.     <div class='setting clear'>
  19.       <label for="comment_url" class='float'><%= _("Url") %></label>
  20.       <p class='input_text'>
  21.         <%= text_field 'comment', 'url', :class => 'medium', :value => current_user.url %>
  22.       </p>
  23.     </div>
  24.     <div class='setting clear'>
  25.       <label for="comment_body" class='float'><%= _("Content")%></label>
  26.       <p class='input_text'>
  27.         <%= text_area 'comment', 'body', { :rows => '10', :class => 'small medium'} %>
  28.       </p>
  29.     </div>
  30.   </div>
  31. </div>