Add actions column to SDG local targets index

This commit is contained in:
Senén Rodero Rodríguez
2020-11-24 18:52:41 +01:00
parent 5611f58909
commit eb0f13018c

View File

@@ -10,13 +10,14 @@
<tr>
<td></td>
<th id="local-target-title" scope="col"><%= attribute_name(:title) %></th>
<th id="local-target-actions" scope="col"><%= t("admin.actions.actions") %></th>
</tr>
</thead>
<tbody>
<% local_targets.group_by(&:target).map do |target, local_targets| %>
<tr class="target-header">
<th id="<%= header_id(target) %>" colspan="2" scope="colgroup">
<th id="<%= header_id(target) %>" colspan="3" scope="colgroup">
<%= target.code %> <%= target.title %>
</th>
</tr>
@@ -29,6 +30,8 @@
<td headers="<%= header_id(target) %> <%= header_id(local_target) %> local-target-title">
<%= local_target.title %>
</td>
<td headers="<%= header_id(local_target) %> local-target-actions">
</td>
</tr>
<% end %>
<% end %>