%- model_class = IssueComment -%>
<%= model_class.human_attribute_name(:id) %> | <%= model_class.human_attribute_name(:issue_id) %> | <%= model_class.human_attribute_name(:user_id) %> | <%= model_class.human_attribute_name(:description) %> | <%= model_class.human_attribute_name(:created_at) %> | <%=t '.actions', :default => t("helpers.actions") %> |
---|---|---|---|---|---|
<%= issue_comment.id %> | <%= issue_comment.issue.title %> | <%= issue_comment.user.email %> | <%= issue_comment.description %> | <%=l issue_comment.created_at %> | <%= link_to t('.edit', :default => t("helpers.links.edit")), edit_issue_comment_path(issue_comment), :class => 'btn btn-default btn-xs' %> <%= link_to t('.destroy', :default => t("helpers.links.destroy")), issue_comment_path(issue_comment), :method => :delete, :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) }, :class => 'btn btn-xs btn-danger' %> |