dawarich/app/views/points/_point.html.erb
2025-04-04 20:14:44 +02:00

20 lines
519 B
Text

<tr id="<%= dom_id point %>" class='hover'>
<td>
<%= check_box_tag "point_ids[]",
point.id,
nil,
{
multiple: true,
form: :bulk_destroy_form,
data: {
checkbox_select_all_target: 'child',
action: 'change->checkbox-select-all#toggleParent'
}
}
%>
</td>
<td class='<%= speed_text_color(point.velocity) %>'><%= point.velocity %></td>
<td><%= point.recorded_at %></td>
<td><%= point.lat %>, <%= point.lon %></td>
<td></td>
</tr>