mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
26 lines
796 B
Text
26 lines
796 B
Text
<table class="issues striped">
|
|
<tr>
|
|
<th class="date">Created</th>
|
|
<th class="title">Title</th>
|
|
<th class="assinged">Assigned</th>
|
|
<th class="author">Author</th>
|
|
<th class="actions"></th>
|
|
</tr>
|
|
|
|
<% issues.each do |issue| %>
|
|
<tr>
|
|
<td><%= issue.created_at.strftime("%Y-%m-%d %H:%M:%S") %></td>
|
|
<td><%= namelink issue %></td>
|
|
<td><%= namelink issue.assigned %></td>
|
|
<td><%= namelink issue.author %></td>
|
|
<td class="actions">
|
|
<% 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 %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|