Guest User

Untitled

a guest
Jul 9th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #config/routes.rb
  2. Rails.application.routes.draw do
  3.  
  4.   resources :tweets do
  5.     resources :likes
  6.   end
  7.  
  8.   resources :users
  9.   root 'tweets#index'
  10. end
  11.  
  12. #views/tweets/show.html.erb
  13. <p id="notice"><%= notice %></p>
  14.  
  15. <p>
  16.   <strong>Text:</strong>
  17.   <%= @tweet.text %>
  18. </p>
  19.  
  20. <p>
  21.   <strong>User:</strong>
  22.   <%= @tweet.user.name %>
  23. </p>
  24.  
  25. <p>
  26.   <%= link_to 'Like', @tweet.like %>
  27. </p>
  28.  
  29. <%= link_to 'Edit', edit_tweet_path(@tweet) %> |
  30. <%= link_to 'Back', tweets_path %>
Advertisement
Add Comment
Please, Sign In to add comment