blob: 8f2d36923c4b4d62a707fcb3213b3a3a0b3aa8d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%table#entries
%tr
%th Title
%th Last updated
%th
- @blogs.each do |blog|
%tr{ class: cycle("even", "odd") }
%td= blog.title
%td= blog.updated_at.strftime("%B %d, %Y, %l:%M%P")
%td
%ul.admin-actions
%li= link_to "Preview", admin_blog_url(blog)
%li= link_to "Edit", edit_admin_blog_url(blog)
|