Sha256: 570e9c8d8e0a16a0b1cbe4591b5d6bda27161a3bfa361cf3f334d77e153a13af

Contents?: true

Size: 714 Bytes

Versions: 4

Compression:

Stored size: 714 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Visualizations</h1>

<table>
  <thead>
    <tr>
      <th>Image url</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @visualizations.each do |visualization| %>
      <tr>
        <td>
          <%= image_tag(visualization.image_url) %>
        </td>
        <td><%= visualization.image_url %></td>
        <td><%= link_to 'Show', visualization %></td>
        <td><%= link_to 'Edit', edit_visualization_path(visualization) %></td>
        <td><%= link_to 'Destroy', visualization, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Visualization', new_visualization_path %>

Version data entries

4 entries across 4 versions & 4 rubygems

Version Path
ezii-browser-1.0.0 server/redux-os/app/views/visualizations/index.html.erb
mega-os-1.0.0 app/views/visualizations/index.html.erb
jester-data-8.0.0 app/views/visualizations/index.html.erb
ezii-os-5.2.1 app/views/visualizations/index.html.erb