<div class="row">
  <div class="col-md-12 px-10">
    <%= render 'form_link_public' %>
    <br>
    <br>
    <h4><%= _("Link history:") %></h4>
    <table class="simple clickable table-striped table-hover dataTable no-footer dtr-inline">
      <thead>
      <tr>
        <th><%= _("User") %></th>
        <th><%= _("Date") %></th>
        <th><%= _("URL") %></th>
      </tr>
      </thead>
      <tbody>
      <% @vehicle.shared_locations.each do |shared_location| %>
        <tr>
          <th><%= shared_location.user.name %></th>
          <th><%= shared_location.date_expire.to_s.gsub("UTC", "") %></th>
          <th>
            <% if shared_location.date_expire > Time.now && shared_location.public_id.present?%>
              <a target="_blank" href="<%= public_shared_location_path(@vehicle.id, shared_location.public_id) %>"><%= _("Open") %></a>
            <% end %>
          </th>
        </tr>
      <% end %>
      </tbody>
    </table>
  </div>
</div>
