<%= issue.created_at.strftime("%Y-%m-%d %H:%M:%S") %> |
<%= namelink issue %> |
<%= namelink issue.assigned %> |
<%= namelink issue.author %> |
<% if issue.can_update? cuser %>
<%= link_to icon('pencil'), edit_issue_path(issue) %>
<% end %>
<% if issue.can_destroy? cuser %>
<%= link_to icon('times'), issue, confirm: 'Are you sure?', method: :delete %>
<% end %>
|
<% end %>