Sha256: 443589c90b0969dd597532c99bd676d3f09d35deeb9f01a0423940dbbe7f05f0

Contents?: true

Size: 719 Bytes

Versions: 6

Compression:

Stored size: 719 Bytes

Contents

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

<h1>Tasks</h1>

<table>
  <thead>
    <tr>
      <th>Reward</th>
      <th>Title</th>
      <th>Briefing</th>
      <th>Cta copy</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @tasks.each do |task| %>
      <tr>
        <td><%= task.reward %></td>
        <td><%= task.title %></td>
        <td><%= task.briefing %></td>
        <td><%= task.cta_copy %></td>
        <td><%= link_to 'Show', task %></td>
        <td><%= link_to 'Edit', edit_task_path(task) %></td>
        <td><%= link_to 'Destroy', task, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Task', new_task_path %>

Version data entries

6 entries across 6 versions & 4 rubygems

Version Path
ezii-browser-1.0.0 server/redux-os/app/views/tasks/index.html.erb
mega-os-1.0.0 app/views/tasks/index.html.erb
jester-data-8.0.0 app/views/tasks/index.html.erb
ezii-os-5.2.1 app/views/tasks/index.html.erb
ezii-os-2.0.1 app/views/tasks/index.html.erb
ezii-os-1.1.0 app/views/tasks/index.html.erb