2024-05-23 14:12:23 -04:00
|
|
|
<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>
|
2024-12-11 10:18:40 -05:00
|
|
|
<td class='<%= speed_text_color(point.velocity) %>'><%= point.velocity %></td>
|
2025-04-04 14:15:05 -04:00
|
|
|
<td><%= human_datetime(point.recorded_at) %></td>
|
2025-03-16 15:46:50 -04:00
|
|
|
<td><%= point.lat %>, <%= point.lon %></td>
|
2024-05-23 14:12:23 -04:00
|
|
|
<td></td>
|
|
|
|
|
</tr>
|