aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/admin/posts/_post.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/refinery/blog/admin/posts/_post.html.erb')
-rw-r--r--app/views/refinery/blog/admin/posts/_post.html.erb21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/views/refinery/blog/admin/posts/_post.html.erb b/app/views/refinery/blog/admin/posts/_post.html.erb
new file mode 100644
index 0000000..c8baa80
--- /dev/null
+++ b/app/views/refinery/blog/admin/posts/_post.html.erb
@@ -0,0 +1,21 @@
+<li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= dom_id(post) -%>">
+ <span class='title'>
+ <%= post.title %>
+ <span class="preview">
+ <%= post.published_at.try(:strftime, '%b %d, %Y') || 'draft' %>
+ <%= " by #{post.author.username}" if post.author.present? %>
+ </span>
+ </span>
+ <span class='actions'>
+ <%= link_to refinery_icon_tag("application_go.png"), main_app.blog_post_path(post),
+ :title => t('.view_live_html'),
+ :target => "_blank" %>
+ <%= link_to refinery_icon_tag("application_edit.png"), main_app.edit_refinery_blog_admin_post_path(post),
+ :title => t('.edit') %>
+ <%= link_to refinery_icon_tag("delete.png"), main_app.refinery_blog_admin_post_path(post),
+ :class => "cancel confirm-delete",
+ :title => t('.delete'),
+ :method => :delete,
+ :confirm => t('message', :scope => 'refinery.admin.delete', :title => post.title) %>
+ </span>
+</li>