Sha256: 078f8b275ebc49edc09190371aa227c24735829feea6e21d0b876dd4d7bf8bf2
Contents?: true
Size: 523 Bytes
Versions: 83
Compression:
Stored size: 523 Bytes
Contents
<h1>Listing jobs</h1> <table> <thead> <tr> <th>Device</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @jobs.each do |job| %> <tr> <td><%= job.device %></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
83 entries across 83 versions & 1 rubygems
Version | Path |
---|---|
extface-0.0.3 | app/views/extface/jobs/index.html.erb |
extface-0.0.2 | app/views/extface/jobs/index.html.erb |
extface-0.0.1 | app/views/extface/jobs/index.html.erb |