Sha256: 1c60044b95cc06550355de9e9dbf47ebd190377b023bdb795f7666dad5690bed
Contents?: true
Size: 757 Bytes
Versions: 7
Compression:
Stored size: 757 Bytes
Contents
<% content_for :sitemap do %> <span class="current"><%= t('plugin.press') %></span> <% end %> <table class="table table-bordered table-striped table-condensed"> <tr> <th>#</th> <th>状态</th> <th>标题</th> <th>提交人</th> <th>更新时间</th> <th style="width:100px"></th> </tr> <% @posts.each do |post| %> <tr class="post"> <td><%= post.id %></td> <td><%= post.status %></td> <td class="title"><%= link_to post.title, post %></td> <td class="author"><%= user_name_tag(post.user) %></td> <td class="time"><%= l post.updated_at, format: :long %></td> <td><%= link_to "", admin_post_path(post), 'data-confirm' => 'Are you sure?', method: :delete, class: "fa fa-trash" %></td> </tr> <% end %> </table> <%= paginate @posts %>
Version data entries
7 entries across 7 versions & 1 rubygems