Sha256: 81d039df18c29d03d966c19f6e4d5993b1130891893f56dfe535baacff248eae

Contents?: true

Size: 768 Bytes

Versions: 9

Compression:

Stored size: 768 Bytes

Contents

<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class='panel-title'><%= t(".your_drafts") %></h3>
  </div>
  <div class="panel-body">
    <ul class='list-unstyled'>
      <% if @drafts.empty? %>
        <li class='alert alert-info'>
        <%= link_to t(".no_drafts_yet"), controller: 'content', action: 'new' %> ?
        </li>
      <% else %>
        <% for post in @drafts %>
          <li>
          <h5>
            <%= link_to(post.title, controller: "admin/content", action: "edit", id: post.id) %>
            <%= display_date_and_time(post.created_at) %>
          </h5>
          <p><%= post.body.strip_html.slice(0,300) if post.body %></p>
          <hr>
          </li>
        <% end %>
      <% end %>
    </ul>
  </div>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
publify_core-9.1.0 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.1 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.0 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.0.pre6 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.0.pre5 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.0.pre4 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.0.pre3 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.0.pre2 app/views/admin/dashboard/_drafts.html.erb
publify_core-9.0.0.pre1 app/views/admin/dashboard/_drafts.html.erb