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

Ajax

开发平台:

Others

  1. <% @page_heading =  _("Feedback for") + " #{ this_blog.settings['blog_name'] }" %>
  2. <% subtabs_for(:content) %>
  3. <% form_tag({:action => 'index'}, :method => :get) do %>
  4. <div class='settings'>
  5.   <h4><label for="search"><%= _("Search Comments and Trackbacks that contain")%>...:</label></h4>
  6.   <div class='input_text'>
  7.     <input type="text" id="feedback_search" name="search" value="<%=h params[:search] %>" class='medium' />
  8.     <%= submit_tag(_("Search"), {:class => 'ed_button'}) %>
  9.   </div>    
  10. </div>
  11. <% end %>
  12. <% form_tag({:action => 'bulkops'}, :method => :post) do %>
  13. <%= render :partial => 'button', :locals => { :position => 'top' } %>
  14. <%= hidden_field_tag "search", params[:search]%>
  15. <%= hidden_field_tag "page", params[:page]%>
  16. <div class='settings'>
  17.   <select onchange='window.location=this.options[this.selectedIndex].value;'>
  18.     <option value=''><%= _("All comments")%></option>
  19.     <option value='?ham=f' <%= 'selected' if params[:ham] == 'f' %>><%= _("Limit to ham") %></option>
  20.     <option value='?confirmed=f' <%= 'selected' if params[:confirmed] == 'f' %>><%= _("Unapproved comments") %></option>
  21.     <option value='?published=f' <%= 'selected' if params[:published] == 'f' %>><%= _("Limit to spam")%></option>
  22.   </select>
  23. </div>
  24. <table class='settings'>
  25.   <tr>
  26.     <th><input type="checkbox" name="checkall" id="checkall" onclick="check_all(this);"/></th>
  27.     <th><%= _("Status")%></th>
  28.     <th><%= _("Comment Excerpt")%></th>
  29.     <th><%= _("Article")%></th>
  30.     <th><%= _("Author")%></th>
  31.     <th><%= _("Date")%></th>
  32.   </tr>
  33.   <%= render_void_table(@feedback.size, 9) %>
  34.   <%= render :partial => 'item', :collection => @feedback %>
  35.   <%= display_pagination(@feedback, 6)%>
  36. </table>
  37. <%= render :partial => 'button', :locals => { :position => 'bottom' } %>
  38. <% end %>