32 lines
869 B
Plaintext
32 lines
869 B
Plaintext
<tr id="<%= dom_id(task_request) %>">
|
|
<td>
|
|
<%= task_request.id %>
|
|
</td>
|
|
<td>
|
|
<%= task_request.project.account.name %>
|
|
</td>
|
|
<td>
|
|
<%= task_request.project.name %>
|
|
</td>
|
|
<td>
|
|
<%= task_request.created_at.strftime("%D") %>
|
|
</td>
|
|
<td>
|
|
<%= task_request.deadline.try(:strftime, '%D') %>
|
|
</td>
|
|
<td>
|
|
<%= task_request.time_allowed %>
|
|
</td>
|
|
<td>
|
|
<%= task_request.status.titleize %>
|
|
</td>
|
|
<td class="text-right">
|
|
<div class="btn-group">
|
|
<%= button_tag "Manage", class: "btn btn-light btn-sm dropdown-toggle border", data: { toggle: "dropdown", boundary: "window" }, aria: { haspopup: true, expanded: false } %>
|
|
<div class="dropdown-menu dropdown-menu-right">
|
|
<%= link_to fa_icon("pencil", text: "Edit"), [:edit, :admin, task_request], class: "dropdown-item" %>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|