Sha256: 58169513516c5499b7b05672c525c245ef04f764e50034cde6e6c940f2b54095

Contents?: true

Size: 367 Bytes

Versions: 1

Compression:

Stored size: 367 Bytes

Contents

<header>
  <% if policy(Bongo::Article).create? %>
    <%= link_to new_article_path do %>
      <b>New Article</b>
    <% end %>
  <% end %>
</header>

<ul>
  <% @drafts.each do |draft| %>
    <li>
      <%= link_to draft.title, draft %><br>
      <small>last modified <%= distance_of_time_in_words_to_now(draft.updated_at) %> ago</small>
    </li>
  <% end %>
</ul>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bongo-0.2.0 app/views/bongo/drafts/index.html.erb