Sha256: b16c49bec18230e0dd5ff6bfe11caf23d0dfc93920ec2b04ccd54fa95a78c0c8

Contents?: true

Size: 620 Bytes

Versions: 4

Compression:

Stored size: 620 Bytes

Contents

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

<h1>Articles</h1>

<div id="articles">
  <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.status %></td>
        <td><%= video.budget %></td>
        <td><%= video.country %></td>
        <td><%= video.company&.name %></td>
        <td><%= link_to "Show", video %></td>
      </tr>
    <% end %>

    </tbody>
  </table>
  
</div>

<%= link_to "New article", new_article_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/articles/index.html.erb
rails_app_generator-0.3.5 after_templates/addons/factory_bot/app/views/articles/index.html.erb
rails_app_generator-0.3.4 after_templates/addons/factory_bot/app/views/articles/index.html.erb
rails_app_generator-0.3.3 after_templates/addons/factory_bot/app/views/articles/index.html.erb