Guest User

Untitled

a guest
Mar 19th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. `app/views/links/show.html.erb`:
  2. ```html
  3. <p id="notice"><%= notice %></p>
  4.  
  5. <h3><%= link_to @link.title, @link.url %></h3>
  6. <p> Submited <%= time_ago_in_words(@link.created_at) %> ago by <b><%= @link.user.email %></b></p>
  7. <hr/>
  8.  
  9. <div class="button-group float-left">
  10. <%= link_to "Visit URL", @link.url, class: "btn btn-primary" %>
  11. <%= link_to 'Back', links_path, class: "btn btn-primary" %>
  12. </div>
  13.  
  14. <div class="button-group float-right">
  15. <% if @link.user == current_user %>
  16. <%= link_to 'Edit', edit_link_path(@link), class: "btn btn-warning" %>
  17. <%= link_to 'Destroy', @link, method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-danger" %>
  18. <% end %>
  19. </div>
  20. ```
Add Comment
Please, Sign In to add comment