Sha256: 226566641ac4bd46ba1372d968172cb79ac21703bd387b3e538e7395e202fada

Contents?: true

Size: 544 Bytes

Versions: 1

Compression:

Stored size: 544 Bytes

Contents

<h3>Connected devices</h3>

<table class="table">
  <tr>
    <th>Device name</th>
    <th>Device uid</th>
    <th>Connected</th>
    <th>Last access</th>
    <th>Actions</th>
  </tr>
  <% @user_devices.each do |user_device| %>
    <tr>
      <td><%= user_device.device.name %></td>
      <td><%= user_device.device.uid %></td>
      <td><%= user_device.created_at %></td>
      <td><%= user_device.updated_at %></td>
      <td><%= link_to 'Remove', device_path(id: user_device.device.id), method: 'delete' %></td>
    </tr>
  <% end %>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_devices-1.2.0 app/views/spree/devices/index.html.erb