<%= t 'activerecord.attributes.comments.author' %> | <%= t 'activerecord.attributes.comments.page' %> | <%= t 'activerecord.attributes.comments.body' %> | <%= t 'activerecord.attributes.comments.status' %> | <%= t 'activerecord.attributes.comments.locale' %> | Actions |
---|---|---|---|---|---|
<%= comment.author.name %> | <%= link_to comment.page.title, comment.page %> | <%= truncate comment.body, length: 75, separator: ' ...' %> | <%= comment.status %><%= t 'colon' %><%= render 'comments/status_buttons', comment: comment %> | <%= comment.locale %> | <%= link_to t('edit'), edit_comment_path(comment), class: 'btn btn-mini' %><%= link_to t('delete'), comment, method: :delete, data: { confirm: t('are_you_sure') }, class: 'btn btn-mini btn-danger' %> |