mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
105 lines
3 KiB
Text
105 lines
3 KiB
Text
= javascript_include_tag 'Chart'
|
|
|
|
.row
|
|
.col-md-12
|
|
.page-header
|
|
%h1
|
|
Events
|
|
= "(#{@events.length})" if @events.any?
|
|
|
|
.btn-group.pull-right
|
|
%button.btn.btn-primary{ title: 'Mass import of commercials for events',
|
|
data: { toggle: 'modal', target: '#mass-commercials-modal' } }
|
|
Add Commercials
|
|
|
|
- if can? :create, Event
|
|
= link_to 'Add Event',
|
|
new_admin_conference_program_event_path(@conference.short_title),
|
|
class: 'button btn btn-default btn-info'
|
|
|
|
- if can? :read, Event
|
|
- @export_formats.each do |export_format|
|
|
= render 'export_menu',
|
|
export_format: export_format,
|
|
conference_id: @conference.short_title
|
|
|
|
%p.text-muted
|
|
All the submissions of your speakers
|
|
|
|
.modal#mass-commercials-modal
|
|
.modal-dialog
|
|
.modal-content
|
|
.modal-header
|
|
%h1 Add commercials to events
|
|
.text-muted
|
|
Upload your file with data in the following format:
|
|
%b Event_ID:Commercial_Link
|
|
, eg.
|
|
%br
|
|
%b 11:https://youtube.com/myvideo
|
|
|
|
.modal-body
|
|
= semantic_form_for '',
|
|
url: mass_upload_commercials_admin_conference_program_path(@conference.short_title),
|
|
method: :post do |f|
|
|
= f.input 'file', as: :file
|
|
.modal-footer
|
|
= f.submit 'Add', class: 'btn btn-primary'
|
|
.row
|
|
.col-md-4
|
|
= render 'admin/conferences/doughnut_chart',
|
|
title: 'Events state',
|
|
data: @event_distribution
|
|
.col-md-4
|
|
= render 'admin/conferences/doughnut_chart',
|
|
title: 'Confirmed events scheduled',
|
|
data: @scheduled_event_distribution
|
|
.col-md-4
|
|
= render 'admin/conferences/doughnut_chart',
|
|
title: 'Tracks of confirmed events',
|
|
data: @tracks_distribution_confirmed
|
|
.row
|
|
.col-md-12
|
|
.margin-event-table
|
|
%table.datatable
|
|
%thead
|
|
%th
|
|
%b ID
|
|
%th
|
|
%b Title
|
|
- if @program.rating_enabled?
|
|
%th
|
|
%b Rating
|
|
%th
|
|
%b Submitter
|
|
%th
|
|
%b Speakers
|
|
- if @program.languages.present?
|
|
%th
|
|
%b Language
|
|
%th
|
|
%b Requires Registration
|
|
%th
|
|
%b Highlight
|
|
%th
|
|
%b Type
|
|
%th
|
|
%b Track
|
|
%th
|
|
%b Difficulty
|
|
%th
|
|
%b State
|
|
%th
|
|
.fa.fa-comment
|
|
- @events.each do |event|
|
|
= render 'datatable_row',
|
|
event: event,
|
|
conference_id: @conference.short_title,
|
|
program: @program,
|
|
rating_enabled: @program.rating_enabled?,
|
|
show_votes: @program.show_voting?,
|
|
max_rating: @program.rating,
|
|
event_types: @event_types,
|
|
tracks: @tracks,
|
|
difficulty_levels: @difficulty_levels,
|
|
email_settings: @conference.email_settings
|