Sha256: 00448b6b5e65165384f643e25dd4f871f5e7b71875ae18495aa2f268fa9819b5

Contents?: true

Size: 1.89 KB

Versions: 9

Compression:

Stored size: 1.89 KB

Contents

<%= render 'base' %>

<div class="toolbar clearfix">
  <form class="form-inline pull-left" action="<%= admin_sites_path %>">
    <div class="form-group">
      <input type="text" name="q" class="form-control" value="<%= params[:q] %>" placeholder="网站名称" />
    </div>
    <button class="btn btn-default">搜索</button>
  </form>

  <div class="pull-right">
    <a href="<%= admin_site_nodes_path %>" class="btn btn-default">分类管理...</a>
  </div>
</div>

<div id="admin_sites">
  <table class="table table-bordered table-striped table-condensed">
    <tr class="head">
      <td style="width:40px;">编号</td>
      <td style="width:140px;">网站</td>
      <td>信息</td>
      <td>提交人</td>
      <td style="width:100px">节点</td>
      <td style="width:105px">时间</td>
      <td style="width:30px" class="opts"></td>
    </tr>
    <% @sites.each do |item| %>
    <tr class="<%= cycle("","even") %><%= ' deleted' if !item.deleted_at.blank? %>">
      <td><%= item.id %></td>
      <td><%= image_tag(item.favicon_url, style: "width:16px;height:16px;")%> <%= item.name %></td>
      <td>
        <%= link_to item.url,item.url, target: "_blank" %><br />
        <small class="muted"><%= item.desc %></small>
      </td>
      <td><%= user_name_tag(item.user) %></td>
      <td><%= item.site_node.name if !item.site_node.blank? %></td>
      <td><%= l(item.created_at, format: :short) %></td>
      <td>
        <%= link_to "", edit_admin_site_path(item.id), class: "fa fa-pencil" %>
        <% if item.deleted? %>
          <%= link_to "", undestroy_admin_site_path(item.id), method: :post, 'data-confirm' => '确定要恢复么?', class: "fa fa-undo" %>
        <% else %>
          <%= link_to "", admin_site_path(item.id), method: :delete, 'data-confirm' => '确定要删除吗?', class: "fa fa-trash" %>
        <% end %>
      </td>
    </tr>
    <% end %>
  </table>
  <%= paginate @sites %>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

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