26 lines
643 B
Plaintext
26 lines
643 B
Plaintext
<h1>Listing code_harbor_links</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Oauth2token</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @code_harbor_links.each do |code_harbor_link| %>
|
|
<tr>
|
|
<td><%= code_harbor_link.oauth2token %></td>
|
|
<td><%= link_to 'Show', code_harbor_link %></td>
|
|
<td><%= link_to 'Edit', edit_code_harbor_link_path(code_harbor_link) %></td>
|
|
<td><%= link_to 'Destroy', code_harbor_link, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Code harbor link', new_code_harbor_link_path %>
|