Sha256: 625ed76bc0be640938da53eeeffe49771993ab908a4067ff2dad692ec90ae5ef

Contents?: true

Size: 535 Bytes

Versions: 4

Compression:

Stored size: 535 Bytes

Contents

<p style="color: green"><%= notice %></p>

<h1>Videos</h1>

<div id="videos">

  <table>
    <thead>
      <tr>
        <th>title</th>
        <th>Youtube ID</th>
        <th>Article</th>
      </tr>
    </thead>
    <tbody>

    <% @videos.each do |video| %>
      <tr>
        <td><%= video.name %></td>
        <td><%= video.slug %></td>
        <td><%= video.article&.title %></td>
        <td><%= link_to "Show", video %></td>
      </tr>
    <% end %>

    </tbody>
  </table>

</div>

<%= link_to "New video", new_video_path %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rails_app_generator-0.3.6 after_templates/addons/factory_bot/app/views/videos/index.html.erb
rails_app_generator-0.3.5 after_templates/addons/factory_bot/app/views/videos/index.html.erb
rails_app_generator-0.3.4 after_templates/addons/factory_bot/app/views/videos/index.html.erb
rails_app_generator-0.3.3 after_templates/addons/factory_bot/app/views/videos/index.html.erb