Guest User

Untitled

a guest
Jun 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. %h1 Listing pages
  2.  
  3. %table
  4. %tr
  5. %th ID
  6. %th Name
  7. %th Page Name
  8. %th Title
  9. %th Parent
  10. %th Page Type
  11. %th{:colspan => 3} Actions
  12.  
  13. - Page.all.each do |page|
  14. %tr
  15. %td= h page.id
  16. %td= h page.name
  17. %td= h page.page_name
  18. %td= h page.title
  19. %td= h page.parent.nil? ? "n/a" : page.parent.page_name
  20. %td= h PageType[page.page_type].display
  21. %td{:class => :actions}
  22. = link_to 'Show', page
  23. |
  24. = link_to 'Edit', edit_page_path(page)
  25. |
  26. = link_to 'Destroy', page, :confirm => 'Are you sure?', :method => :delete
  27. %br
  28. = link_to 'New page', new_page_path
Add Comment
Please, Sign In to add comment