Sha256: e4f2e5595324cda688b48b4bf6db910eb4887ddd5f3aca6e94349ecac5541fe3
Contents?: true
Size: 747 Bytes
Versions: 2
Compression:
Stored size: 747 Bytes
Contents
<h1>Listing jobs</h1> <table> <thead> <tr> <th>Where to</th> <th>When to</th> <th>How to</th> <th>Who to</th> <th>Description</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @jobs.each do |job| %> <tr> <td><%= job.where_to %></td> <td><%= job.when_to %></td> <td><%= job.how_to %></td> <td><%= job.who_to %></td> <td><%= job.description %></td> <td><%= link_to 'Show', job %></td> <td><%= link_to 'Edit', edit_job_path(job) %></td> <td><%= link_to 'Destroy', job, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Job', new_job_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jobs-0.0.5 | app/views/jobs/jobs/index.html.erb |
jobs-0.0.4 | app/views/jobs/jobs/index.html.erb |