2015-07-17 18:55:47 +02:00
|
|
|
.panel.well
|
2015-09-03 12:17:42 +02:00
|
|
|
-@conferences_available.each do |conference|
|
|
|
|
|
-conference.events.each do |event|
|
|
|
|
|
- if event.comment_threads.find_since_last_login(current_user).count > 0
|
|
|
|
|
%panel
|
|
|
|
|
%panel.panel-header
|
|
|
|
|
%h4.title
|
|
|
|
|
= link_to event.title, admin_conference_event_path(event.conference.short_title, event)
|
|
|
|
|
= conference.title
|
|
|
|
|
%hr
|
|
|
|
|
-event.comment_threads.find_since_last_login(current_user).each do |comment|
|
|
|
|
|
%panel-body
|
|
|
|
|
%ul.list-unstyled
|
|
|
|
|
%li= comment.body
|
|
|
|
|
%ul.list-inline
|
|
|
|
|
%li Posted by: #{comment.user.name}
|
|
|
|
|
%li Created at: #{comment.created_at}
|
2015-07-17 18:55:47 +02:00
|
|
|
%hr
|