Skip to content

Instantly share code, notes, and snippets.

@guilleiguaran
Created June 20, 2015 20:04
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 guilleiguaran/10947e41436a4e022262 to your computer and use it in GitHub Desktop.
Save guilleiguaran/10947e41436a4e022262 to your computer and use it in GitHub Desktop.
<p id="notice"><%= notice %></p>
<h1>Listing Tweets</h1>
<section id="tweets">
<% @tweets.each do |tweet| %>
<article class="tweet">
<p>@<%= tweet.user.username %></p>
<p><%= tweet.body %></p>
<p>
<%= link_to 'Show', tweet %> |
<%= link_to 'Destroy', tweet, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
</article>
<% end %>
</section>
<br>
<%= link_to 'New Tweet', new_tweet_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment