44 lines
1.8 KiB
Text
44 lines
1.8 KiB
Text
.row
|
|
.col-md-12
|
|
.well#submissions
|
|
.row
|
|
.text-center
|
|
%h4 Event submissions over time
|
|
.row
|
|
.submissionsChart{"data-chart"=>"#{@submissions.to_json}", "data-conferences"=>"#{@conferences.to_json}", "data-weeks"=>"#{@cfp_weeks.to_json}"}
|
|
%canvas#submissionsChart{"data-name"=>"submissions"}
|
|
.row
|
|
.text-center
|
|
weeks
|
|
.row
|
|
.conferenceCheckboxes#submissionsCheckboxes
|
|
- @conferences.each do |conference|
|
|
%div
|
|
%span{"style"=>"border-bottom: 3px solid #{conference.color};", "data-chart"=> "submissions"}
|
|
- if conference.pending?
|
|
%input{"type"=>"checkbox", "name"=>"#{conference.short_title}", "checked"=>"checked"}
|
|
- else
|
|
%input{"type"=>"checkbox", "name"=>"#{conference.short_title}"}
|
|
#{conference.short_title}
|
|
.row
|
|
.col-md-12
|
|
.well#registrations
|
|
.row
|
|
.text-center
|
|
%h4 Conference registrations over time
|
|
.row
|
|
.registrationsChart{"data-chart"=>"#{@registrations.to_json}", "data-conferences"=>"#{@conferences.to_json}", "data-weeks"=>"#{@registration_weeks.to_json}"}
|
|
%canvas#registrationsChart{"data-name"=>"registrations"}
|
|
.row
|
|
.text-center
|
|
weeks
|
|
.row
|
|
.conferenceCheckboxes#registrationsCheckboxes
|
|
- @conferences.each do |conference|
|
|
%div
|
|
%span{"style"=>"border-bottom: 3px solid #{conference.color};", "data-chart"=> "registrations"}
|
|
- if conference.pending?
|
|
%input{"type"=>"checkbox", "name"=>"#{conference.short_title}", "checked"=>"checked"}
|
|
- else
|
|
%input{"type"=>"checkbox", "name"=>"#{conference.short_title}"}
|
|
#{conference.short_title}
|