Skip to content

Instantly share code, notes, and snippets.

@ignaciojonas
Created March 3, 2021 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ignaciojonas/1d3c514220cf4384d7e6f45621f820ec to your computer and use it in GitHub Desktop.
Save ignaciojonas/1d3c514220cf4384d7e6f45621f820ec to your computer and use it in GitHub Desktop.
<p id="notice"><%= notice %></p>
<h1>Styles</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @styles.each do |style| %>
<tr>
<td><%= style.name %></td>
<td><%= style.description %></td>
<td><%= link_to 'Show', style %></td>
<td><%= link_to 'Edit', edit_style_path(style) %></td>
<td><%= link_to 'Destroy', style, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Style', new_style_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment