Sha256: 5ff43bdace3009db2029661db3773f9ed33652972308ccee122f64662a205255

Contents?: true

Size: 530 Bytes

Versions: 7

Compression:

Stored size: 530 Bytes

Contents

<%
  confirm_message = %Q'Are you sure you want to delete "#{post.title}"?'
%>

<tr>
  <td><%= link_to post.title, edit_blogo_admin_post_path(post) %></td>
  <td><%= post.status %></td>
  <td><%= post.user.name %></td>
  <td><%= post.published_at.to_date %></td>
  <td>
    <%= link_to 'edit', edit_blogo_admin_post_path(post), class: "pure-button  button-secondary" %>
    <%= link_to 'delete', blogo_admin_post_path(post), method: :delete, data: {confirm: confirm_message}, class: "pure-button  button-warning" %>
  </td>
</tr>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
blogo-0.0.8 app/views/blogo/admin/posts/_post_li.html.erb
blogo-0.0.7 app/views/blogo/admin/posts/_post_li.html.erb
blogo-0.0.6 app/views/blogo/admin/posts/_post_li.html.erb
blogo-0.0.5 app/views/blogo/admin/posts/_post_li.html.erb
blogo-0.0.4 app/views/blogo/admin/posts/_post_li.html.erb
blogo-0.0.3 app/views/blogo/admin/posts/_post_li.html.erb
blogo-0.0.2 app/views/blogo/admin/posts/_post_li.html.erb