Sha256: cb55d0c18a3939410364819419dfeac2abbab3cec9189d5854eebf35b469b3bd

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

<% title_tag t('plugin.press') %>

<div class="row">
  <div class="col-md-9">
    <div id="post-upcoming" class="card post-<%= action_name %>">
      <div class="card-header">待审核列表</div>
      <div class="card-body">
        <% if @posts.blank? %>
          <div class="no-result">暂无任何文章</div>
        <% else %>
          <table class="table table-bordered table-striped table-condensed">
            <tr>
              <th>#</th>
              <th>标题</th>
              <th>提交人</th>
              <th>更新时间</th>
            </tr>
            <% @posts.each do |post| %>
            <tr class="post">
              <td><%= post.id %></td>
              <td class="title"><%= link_to post.title, post %></td>
              <td class="author"><%= user_name_tag(post.user) %></td>
              <td class="time"><%= timeago post.updated_at %></td>
            </tr>
            <% end %>
          </table>
        <% end %>
      </div>
      <div class="card-footer">
        <%= paginate @posts %>
      </div>
    </div>
  </div>
  <%= render 'sidebar' %>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
homeland-press-0.4.2 app/views/homeland/press/posts/upcoming.html.erb
homeland-press-0.4.1 app/views/homeland/press/posts/upcoming.html.erb
homeland-press-0.4.0 app/views/homeland/press/posts/upcoming.html.erb