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

Ajax

开发平台:

Others

  1. <% @page_heading = _("Comments for %s", @article.title) %>
  2. <% @link_to_new = link_to(_("Add a comment"), '#comment', {:id => 'dialog-link', :class => 'ui-state-default ui-corner-all'}) %>
  3. <% content_for (:tasks) do %>
  4.   <%= subtab(_('All comments'), {:action => :article, :id => @article.id, :ham => 'y', :spam => 'y'} ) %>
  5.   <%= subtab(_('Limit to ham'), {:action => :article, :id => @article.id, :ham => 'y'}) %>
  6.   <%= subtab(_('Limit to spam'), {:action => :article, :id => @article.id, :spam => 'y'}) %>
  7. <% end %>
  8. <div class="list">
  9.   <ol>
  10.   <% for comment in @comments -%>
  11.     <li <%= alternate_class %>>
  12.       <p><strong><%= mail_to h(comment.email), h(comment.author) %></strong> |
  13.       <%= link_to_unless comment.url.blank?, h(comment.url), comment.url %> | 
  14.       IP: <%=h comment.ip %></p>
  15.       <%= h(comment.body) %>
  16.       <p>
  17.         <%= format_date comment.created_at %> – [ 
  18.         <%= link_to_edit _("Edit"), comment %> | 
  19.         <%= link_to _("Delete") , {:action => 'delete', :id => comment.id, :search => params[:search], :page => params[:page] },  :confirm => _("Are you sure?"), :method => :post %> |
  20.         <%= comment.state %> ]
  21.       </p>
  22.     </li>
  23.   <% end -%>
  24.   </ol>
  25. </div>
  26. <hr />  
  27. <% form_tag :action => "create" do %>
  28.   <%= render :partial => "form" %>
  29.   <%= cancel_or_save %>
  30. <% end %>