2017-03-03 15:45:06 +02:00
|
|
|
.row
|
|
|
|
|
.col-md-12
|
|
|
|
|
.page-header
|
|
|
|
|
%h1
|
|
|
|
|
Events without commercials
|
|
|
|
|
= "(#{@events_missing_commercial.length})"
|
|
|
|
|
%p.text-muted
|
|
|
|
|
All submissions that have no commercial
|
|
|
|
|
.col-md-12
|
2018-06-15 18:20:18 -07:00
|
|
|
%table.datatable
|
2017-03-03 15:45:06 +02:00
|
|
|
%thead
|
2023-03-04 13:12:47 -08:00
|
|
|
%tr
|
|
|
|
|
%th ID
|
|
|
|
|
%th Title
|
|
|
|
|
%th Speaker(s)
|
2017-03-03 15:45:06 +02:00
|
|
|
%tbody
|
|
|
|
|
- @events_missing_commercial.each do |event|
|
|
|
|
|
%tr
|
|
|
|
|
%td= event.id
|
|
|
|
|
%td= link_to event.title, edit_admin_conference_program_event_path(@conference.short_title, event)
|
2017-03-21 21:08:53 +02:00
|
|
|
%td
|
2019-09-04 17:48:18 +05:30
|
|
|
- if(event.speakers.any?)
|
|
|
|
|
= speaker_links(event)
|
|
|
|
|
- else
|
|
|
|
|
.small
|
|
|
|
|
(No speaker)
|