blob: 6903fd1abf6a526bca24e718f4422d02fdbb0087 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
- title "Streams"
%table#entries
%tr
%th Title
%th Date created
%th
- @streams.each do |stream|
%tr{ class: cycle("even", "odd") }
%td= stream.title
%td= stream.created_at.strftime("%B %d, %Y, %l:%M%P")
%td
%ul.admin-actions
%li= link_to "Edit", edit_admin_stream_url(stream)
%li= link_to "Add Update", new_admin_stream_update_url(stream)
|