about summary refs log tree commit diff stats
path: root/app/views/admin/quotes/index.html.haml
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-10-21 13:24:24 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-10-21 13:24:24 -0400
commit0d50b1f18993827cb6862efeedea528b64fad164 (patch)
tree3e01bd704662742a8847bd281616e29f06249cfa /app/views/admin/quotes/index.html.haml
parent35906f26e24467c52b6cf09346abe57444e5963a (diff)
downloadthoughts-0d50b1f18993827cb6862efeedea528b64fad164.tar.gz
thoughts-0d50b1f18993827cb6862efeedea528b64fad164.tar.bz2
thoughts-0d50b1f18993827cb6862efeedea528b64fad164.zip
Added quote moderation panel
Diffstat (limited to 'app/views/admin/quotes/index.html.haml')
-rw-r--r--app/views/admin/quotes/index.html.haml20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/views/admin/quotes/index.html.haml b/app/views/admin/quotes/index.html.haml new file mode 100644 index 0000000..afe2c20 --- /dev/null +++ b/app/views/admin/quotes/index.html.haml
@@ -0,0 +1,20 @@
1- title "Quotes"
2= will_paginate @quotes
3%table#entries
4 %tr
5 %th ID
6 %th Content
7 %th Submitter
8 %th Date submitted
9 %th
10 - @quotes.each do |quote|
11 %tr{ class: cycle("even", "odd") }
12 %td= quote.id
13 %td= quote_format(quote.content)
14 %td= quote.submitter
15 %td= quote.created_at.strftime("%B %d, %Y, %l:%M%P")
16 %td
17 %ul.admin-actions
18 %li= link_to "View", quote
19 %li= link_to "Delete", admin_quote_url(quote), method: :delete, data: { confirm: "Are you sure?" }
20= will_paginate @quotes