%- model_class = IssueComment -%>
- <%= model_class.human_attribute_name(:id) %>:
- <%= @issue_comment.id %>
- <%= model_class.human_attribute_name(:issue_id) %>:
- <%= @issue_comment.issue.title %>
- <%= model_class.human_attribute_name(:user_id) %>:
- <%= @issue_comment.user.email %>
- <%= model_class.human_attribute_name(:description) %>:
- <%= @issue_comment.description %>
- <%= model_class.human_attribute_name(:created_at) %>:
- <%=l @issue_comment.created_at %>
- <%= model_class.human_attribute_name(:updated_at) %>:
- <%=l @issue_comment.updated_at %>
<%= link_to t('.back', :default => t("helpers.links.back")),
issue_comments_path, :class => 'btn btn-default' %>
<%= link_to t('.edit', :default => t("helpers.links.edit")),
edit_issue_comment_path(@issue_comment), :class => 'btn btn-default' %>
<%= 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-danger' %>