Sha256: 2040d0c81c2ca781d950feef2de4f8687054ca781d1ab07daff47d5f71021e40
Contents?: true
Size: 739 Bytes
Versions: 7
Compression:
Stored size: 739 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Code Link Batches</h1> <table> <thead> <tr> <th>Description</th> <th>Code link</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @code_link_batches.each do |code_link_batch| %> <tr> <td><%= code_link_batch.description %></td> <td><%= code_link_batch.code_link_id %></td> <td><%= link_to 'Show', code_link_batch %></td> <td><%= link_to 'Edit', edit_code_link_batch_path(code_link_batch) %></td> <td><%= link_to 'Destroy', code_link_batch, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Code Link Batch', new_code_link_batch_path %>
Version data entries
7 entries across 7 versions & 4 rubygems