Skip to content

Instantly share code, notes, and snippets.

@edison
Created September 8, 2012 19:55
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 edison/3679200 to your computer and use it in GitHub Desktop.
Save edison/3679200 to your computer and use it in GitHub Desktop.
index
<% if @quotes.any? %>
<table class="table table-striped">
<tbody>
<% @quotes.each do |quote| %>
<tr>
<td><%= quote.content %></td>
<td><%= link_to 'Excluir', quote_path(quote), method: :delete, confirm: 'Tem certeza?', class: 'btn' %></td>
</tr>
<% end %>
</tbody>
</table>
<% else %>
<div class="well">Nenhuma frase cadastrada.</div>
<% end %>
<%= link_to 'Cadastre uma frase', new_quote_path, class: 'btn btn-primary' %>
<%= link_to 'Voltar ao início', root_path, class: 'btn btn-primary' %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment