Sha256: 3f2dc507f4c4785daa51306623114bec173dbf281383eeb5f2cc6e87e0d6ecbb

Contents?: true

Size: 820 Bytes

Versions: 9

Compression:

Stored size: 820 Bytes

Contents

<%= render 'base' %>

<div class="toolbar">
  <a href="<%= new_admin_site_node_path %>" class="btn btn-small btn-success">新建</a>
</div>

<div id="admin_site_nodes">
  <table class="table table-bordered table-striped table-condensed">
    <tr class="head">
      <td>#</td>
      <td>名称</td>
      <td>排序</td>
      <td class="opts"></td>
    </tr>
    <% @site_nodes.each do |item| %>
    <tr class="<%= cycle("", "even") %>">
      <td><%= item.id %></td>
      <td><%= item.name %></td>
      <td><%= item.sort %></td>
      <td>
        <%= link_to "", edit_admin_site_node_path(item.id), class: "fa fa-pencil" %>
        <%= link_to "", admin_site_node_path(item.id), method: :delete, 'data-confirm' => '确定要删除吗?', class: "fa fa-trash" %>
      </td>
    </tr>
    <% end %>
  </table>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
homeland-site-0.3.3 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.3.2 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.3.1 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.3.0 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.2.1 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.2.0 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.1.2 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.1.1 app/views/homeland/site/admin/site_nodes/index.html.erb
homeland-site-0.1.0 app/views/homeland/site/admin/site_nodes/index.html.erb