<table class="table-report" style="width:100%">
  <tr>
    <th>Grupo</th>
    <td colspan="2"><%= @vehicle.group.name %></td>
  </tr>
  <tr>
    <th>Vehículo</th>
    <td colspan="2"><%= @vehicle.name %></td>
  </tr>
  <tr>
    <th>Fecha</th>
    <th># Galones </th>
    <th>Ubicación</th>
  </tr>
  <tr>
    <% @positions.order(fixtime: :asc).each do |position| %>
    <tr>
      <td class="data-row"><%= position.fixtime.strftime("%F %T") %></td>
      <td class="data-row"><%= position.get_fuel %></td>
      <td class="data-row"><a href="<%= position.gm_link %>">Ver ubicación</a></td>
    </tr>
  <% end %>
  </tr>
</table>
