27 lines
563 B
Text
27 lines
563 B
Text
<p id="notice"><%= notice %></p>
|
|
|
|
<h1>Pastes</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Search pastes</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @pastes.each do |paste| %>
|
|
<tr>
|
|
<td><%= paste.search_pastes %></td>
|
|
<td><%= link_to 'Show', paste %></td>
|
|
<td><%= link_to 'Edit', edit_paste_path(paste) %></td>
|
|
<td><%= link_to 'Destroy', paste, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Paste', new_paste_path %>
|