<%= translated_attribute(post.title) %>
|
<%= decidim_sanitize post_description_admin(post) %>
|
<%= post.try(:author).try(:name) %>
|
<%= l post.created_at, format: "%d/%m/%Y - %H:%M" %>
|
<% if allowed_to? :update, :blogpost, blog_post: post %>
<%= icon_link_to "pencil", edit_post_path(post), t("actions.edit", scope: "decidim.blogs"), class: "action-icon--edit" %>
<% end %>
<% if allowed_to? :destroy, :blogpost, blog_post: post %>
<%= icon_link_to "circle-x", post_path(post), t("actions.destroy", scope: "decidim.blogs"), method: :delete, class: "action-icon--remove", data: { confirm: t("actions.confirm_destroy", scope: "decidim.blogs") } %>
<% end %>
|
<% end %>