Sha256: 89c9430db9d4f8f11bcaa189711eb7fe6e340f601c8ef0109b8e65ea5e79d00b

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

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

<h1>Banal Brainstorms</h1>

<table>
  <thead>
    <tr>
      <th>Idea</th>
      <th>Main category</th>
      <th>Priority</th>
      <th>Status</th>
      <th>Comments</th>
      <th>Idea owner</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @banal_brainstorms.each do |banal_brainstorm| %>
      <tr>
        <td><%= banal_brainstorm.idea %></td>
        <td><%= banal_brainstorm.main_category %></td>
        <td><%= banal_brainstorm.priority %></td>
        <td><%= banal_brainstorm.status %></td>
        <td><%= banal_brainstorm.comments %></td>
        <td><%= banal_brainstorm.idea_owner %></td>
        <td><%= link_to 'Show', banal_brainstorm %></td>
        <td><%= link_to 'Edit', edit_banal_brainstorm_path(banal_brainstorm) %></td>
        <td><%= link_to 'Destroy', banal_brainstorm, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Banal Brainstorm', new_banal_brainstorm_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ezii-os-1.1.0 app/views/banal/brainstorms/index.html.erb