24 lines
494 B
Plaintext
24 lines
494 B
Plaintext
%h1 Listing social_links
|
|
|
|
%table
|
|
%thead
|
|
%tr
|
|
%th Profile
|
|
%th Url
|
|
%th
|
|
%th
|
|
%th
|
|
|
|
%tbody
|
|
- @social_links.each do |social_link|
|
|
%tr
|
|
%td= social_link.profile
|
|
%td= social_link.url
|
|
%td= link_to 'Show', social_link
|
|
%td= link_to 'Edit', edit_social_link_path(social_link)
|
|
%td= link_to 'Destroy', social_link, method: :delete, data: { confirm: 'Are you sure?' }
|
|
|
|
%br
|
|
|
|
= link_to 'New Social link', new_social_link_path
|