Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. h2
  2. | Links
  3.  
  4. /== slim :link_form, :layout => false
  5.  
  6. h2 URLs
  7. a href="/refresh" Obnov všechny výsledky
  8.  
  9. - if defined?(@links)
  10. table style="width: 95%;"
  11. thead
  12. tr
  13. th Doména
  14. th URL
  15. th FB ID
  16. th FB ID likes count
  17. th URL likes count
  18. th URL shares count
  19. th colspan='2' Akce
  20. tbody
  21. - @links.each do |link|
  22. tr
  23. td = link[:domain]
  24. td
  25. a href="/link/#{link[:id]}"
  26. = link[:url]
  27. td = link[:facebook_id]
  28. td = link[:facebook_likes]
  29. td = link[:likes_count]
  30. td = link[:shares_count]
  31. td
  32. a href="/link/#{link[:id]}/edit" Edit
  33. td
  34. form method="post" action="/link/#{link[:id]}" style="display: inline-block"
  35. input type='hidden' value='delete' name='_method'
  36. input type='submit' value='x'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement