Sha256: 83c7f44e3980887272b2b61e1856c6b29047f6fa6558a6d6dd40f9a886e18fbd

Contents?: true

Size: 745 Bytes

Versions: 4

Compression:

Stored size: 745 Bytes

Contents

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

<h1>Projects</h1>

<div id="projects">
  <table>
    <thead>
      <tr>
        <th>Name</th>
        <th>Status</th>
        <th>Budget</th>
        <th>Country</th>
        <th>Progress</th>
        <th>Project</th>
      </tr>
    </thead>
    <tbody>

    <% @projects.each do |project| %>
      <tr>
        <td><%= project.name %></td>
        <td><%= project.status %></td>
        <td><%= project.budget %></td>
        <td><%= project.country %></td>
        <td><%= project.progress %></td>
        <td><%= project.project&.name %></td>
        <td><%= link_to "Show", project %></td>
      </tr>
    <% end %>

    </tbody>
  </table>

</div>

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