- title "Quotes"
= will_paginate @quotes
%table#entries
%tr
%th ID
%th Content
%th Submitter
%th Date submitted
%th
- @quotes.each do |quote|
%tr{ class: cycle("even", "odd") }
%td= quote.id
%td= quote_format(quote.content)
%td= quote.submitter
%td= quote.created_at.strftime("%B %d, %Y, %l:%M%P")
%td
%ul.admin-actions
%li= link_to "View", quote
%li= link_to "Edit", edit_admin_quote_url(quote)
%li= link_to "Delete", admin_quote_url(quote), method: :delete, data: { confirm: "Are you sure?" }
= will_paginate @quotes
lass='form'>
blob: 8d58f620b3bab54a783a4ab45f44a06229bb88c6 (
plain) (
blame)