2015-09-10 11:46:49 +02:00
|
|
|
- @comments.each do |conference, events|
|
2015-09-21 15:56:57 +02:00
|
|
|
.panel.panel-default
|
|
|
|
|
.panel-heading
|
|
|
|
|
%h4.title.panel-title= conference.title
|
|
|
|
|
.panel-body
|
|
|
|
|
- events.each do |event, comments|
|
2015-10-05 13:28:35 +02:00
|
|
|
.notifications
|
2015-10-25 13:29:02 +02:00
|
|
|
%h4.title= link_to event.title, admin_conference_program_event_path(event.program.conference.short_title, event)
|
2015-09-10 11:46:49 +02:00
|
|
|
%hr
|
2015-09-21 15:56:57 +02:00
|
|
|
- comments.each do |comment|
|
|
|
|
|
%h5.strong Posted by: #{comment.user.name} | Created at: #{comment.created_at}
|
|
|
|
|
%p= comment.body
|