Sha256: 2c59e3937f7649edfa14529e1db182f78d98c103df7224688b840a0853b5e1d0

Contents?: true

Size: 760 Bytes

Versions: 2

Compression:

Stored size: 760 Bytes

Contents

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

<h1>Gods</h1>

<table>
  <thead>
    <tr>
      <th>Id</th>
      <th>Name</th>
      <th>Created At</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @gods.each do |god| %>
      <tr>
        <td><%= god.id %></td>
        <td><%= god.name %></td>
        <td><%= god.created_at %></td>
        <td><%= link_to 'Show', god %></td>
        <td><%= link_to 'Edit', edit_god_path(god) %></td>
        <td><%= link_to 'Destroy', god, method: :delete,
                        data: { turbo_method: :delete, turbo_confirm: "Are you sure?" } %></td>
      </tr>
    <% end %>
  </tbody>
</table>
<%= link_to 'New God', new_god_path %>

<br>

<h2>Force Directed Graph</h2>
<svg width="960" height="600"></svg>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
acts_as_graph_diagram-0.1.1 test/dummy/app/views/gods/index.html.erb
acts_as_graph_diagram-0.1.0 test/dummy/app/views/gods/index.html.erb