This partial was going to get too complex since in some places we've got different texts, different URLs or different confirmation messages. While we should probably try to be more consistent and that would make the partial work in most cases, there'll always be some exceptions, and using a partial (with, perhaps, some helper methods) will become messy really quickly.
12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
<tr id="<%= dom_id(group) %>">
|
|
<td>
|
|
<%= link_to group.name, admin_valuator_group_path(group) %>
|
|
</td>
|
|
<td>
|
|
<%= group.valuators.count %>
|
|
</td>
|
|
<td>
|
|
<%= render Admin::TableActionsComponent.new(group) %>
|
|
</td>
|
|
</tr>
|