<% if sites.present? %> <% sites.each_with_index do |site, index| %> <% end %> <% else %> <%= render 'admins/shared/no_data_for_table' %> <% end %>
序号 名称 路由 标识 类型 <%= sort_tag('创建时间', name: 'created_at', path: admins_sites_path) %> 操作
<%= list_index_no((params[:page] || 1).to_i, index) %> <%= overflow_hidden_span display_text(site.name), width: 150 %> <%= site.url %> <%= overflow_hidden_span display_text(site.key), width: 150 %> <%= site.site_type.humanize %> <%= site.created_at&.strftime('%Y-%m-%d %H:%M') %> <%= link_to "编辑", edit_admins_site_path(site), remote: true, class: "action" %> <%= link_to "删除", admins_site_path(site), method: :delete, data:{confirm: "确认删除的吗?"}, class: "action" %>
<%= render partial: 'admins/shared/paginate', locals: { objects: sites } %>