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

Ajax

开发平台:

Others

  1. <% @page_heading = _('Manage articles') %>
  2. <% @link_to_new = link_to(_("New Article"), {:controller => 'content', :action => 'new'}, :id => 'dialog-link', :class => 'ui-state-default ui-corner-all') %>
  3. <% subtabs_for(:content) %>
  4. <% form_remote_tag  :url      => {:action => 'index'},
  5.   :method   => :get,
  6.   :name     => 'article',
  7.   :update   => {:success => 'articleList'},
  8.   :before   => "Element.show('spinner')",
  9.   :complete => "Element.hide('spinner')" 
  10.   do %>
  11. <%= render :partial => 'drafts' unless Article.drafts.empty? %>
  12. <div class='settings'>
  13.   <h4><label for="search"><%= _("Search articles that contains...")%></label></h4>
  14.   <div class='input_text'>
  15.     <input id="search" type="text" name="search[searchstring]" class='small medium' />
  16.     <%= submit_tag(_("Search"), {:class => 'ed_button'}) %>
  17.     <span id='spinner' style="display:none;"><%= image_tag('spinner.gif') %></span>  
  18.   </div>
  19. </div>
  20. <table>
  21.   <tr>
  22.     <th><%= _("Title") %></th>
  23.     <th><%= _("Categories") %></th>
  24.     <th><%= _("Author")%></th>
  25.     <th><%= _("Date") %></th>
  26.     <th><%= _("Feedback")%></th>
  27.   </tr>
  28.   <tr>
  29.     <td>&nbsp;</td>
  30.     <td><%= collection_select_with_current('search', 'category', Category.all, "id", "name", @search[:category].to_i, true)
  31.     %></td>
  32.     <td><%= collection_select_with_current(:search, :user_id, User.find(:all), "id", "name", @search[:user_id].to_i, true) %></td>
  33.     <td>
  34.       <%= collection_select_with_current(:search, :published_at, Article.find_by_published_at, "publication", "publication", @search[:published_at], true) %>
  35.     </td>
  36.     <td><input type="submit" value='<%= _("Filter") %>' class='ed_button' />
  37.   </tr>
  38.   <tbody id="articleList">
  39.     <%= render :partial => 'article_list', :object => @articles -%>
  40.   </tbody>
  41. </table>
  42. <%end%>