about summary refs log tree commit diff stats
path: root/data/maps/the_symbolic
Commit message (Expand)AuthorAgeFilesLines
* [Data] Made proxies with the same answer as the panel explicitStar Rauchenberger2025-08-305-7/+7
* Added the_symbolicStar Rauchenberger2025-08-2526-0/+1465
pp/views/admin/quotes/index.html.haml?id=20f2479b33bc548c4736cdc1ceffde6e3af3a31d'>20f2479 ^
0d50b1f ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

















                                                          
                                                          

                                                                                                            
- 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