2016-10-09 00:22:50 +03:00
|
|
|
- content_for :title
|
|
|
|
= t('.review', event_type: @event.event_type.name.mb_chars.downcase, event_title: @event.title)
|
2015-07-14 21:00:02 +03:00
|
|
|
|
2015-10-15 19:47:53 +03:00
|
|
|
.row
|
2016-10-09 00:22:50 +03:00
|
|
|
.col-xs-12
|
|
|
|
h1.page-header
|
|
|
|
= @event.title
|
|
|
|
small<
|
|
|
|
= @event.subtitle
|
2016-10-11 02:33:39 +03:00
|
|
|
.row
|
|
|
|
.col-md-9
|
2016-10-09 00:22:50 +03:00
|
|
|
h4
|
|
|
|
= t 'events.metadata', type: @event.event_type.name, language: t("locales.#{@event.language}").mb_chars.downcase, length: @event.length
|
2016-10-11 02:33:39 +03:00
|
|
|
.col-md-3.text-right
|
|
|
|
.heading-actions
|
|
|
|
.dropdown>
|
|
|
|
button class="btn btn-sm dropdown-toggle btn-#{proposition_status_class(@event.status)}" type="button" data-toggle="dropdown" title="#{t "status.#{@event.status}"}"
|
|
|
|
= icon(proposition_status_glyph(@event.status))
|
|
|
|
span.caret<
|
|
|
|
ul.dropdown-menu
|
|
|
|
- Proposition.statuses.each do |(status, _)|
|
|
|
|
- next if status == @event.status
|
|
|
|
li
|
|
|
|
= link_to [:management, @conference, @event.proposition, proposition: {status: status}], method: :patch do
|
|
|
|
= proposition_status_icon(status)
|
|
|
|
=< t "status.#{status}"
|
|
|
|
div.btn-group.btn-group-sm
|
|
|
|
= action_buttons(@conference, @event, [:index, :edit])
|
2016-10-09 00:22:50 +03:00
|
|
|
.row
|
2016-10-11 02:33:39 +03:00
|
|
|
= content_tag :div, class: @conference.has_vote_results? || @conference.has_voting_endpoint? ? 'col-md-9' : 'col-xs-12'
|
2016-10-09 00:22:50 +03:00
|
|
|
h3 = Event.human_attribute_name :abstract
|
|
|
|
p = simple_format @event.abstract
|
|
|
|
|
|
|
|
h3 = Event.human_attribute_name :description
|
|
|
|
p = simple_format @event.description
|
|
|
|
- if @event.notes.present?
|
|
|
|
h3 = Event.human_attribute_name :notes
|
|
|
|
p = simple_format @event.notes
|
2016-10-11 02:33:39 +03:00
|
|
|
- if @conference.has_vote_results? or @conference.has_voting_endpoint?
|
|
|
|
.col-md-3
|
|
|
|
.panel.panel-info.panel-rank
|
|
|
|
.panel-heading
|
|
|
|
= t '.rank'
|
2016-10-11 05:16:31 +03:00
|
|
|
- if @event.ranked?
|
2016-10-11 02:33:39 +03:00
|
|
|
.panel-body
|
|
|
|
.row
|
|
|
|
.col-xs-3
|
|
|
|
.huge
|
|
|
|
.label.label-info
|
|
|
|
= @event.rank
|
|
|
|
.col-xs-9.text-right
|
|
|
|
.huge
|
|
|
|
= number_to_percentage(@event.per_cent_of_votes, strip_insignificant_zeros: true, precision: 2)
|
|
|
|
= t('management.conferences.vote_results.vote_ratio', votes: @event.number_of_votes, total_votes: @conference.number_of_ballots_cast)
|
|
|
|
- else
|
|
|
|
.panel-body.text-center
|
|
|
|
= t 'management.conferences.vote_results.vote_data_never_updated'
|
|
|
|
|
|
|
|
= link_to update_vote_data_management_conference_path(@conference), method: :patch do
|
|
|
|
.panel-footer.text-primary.text-right
|
|
|
|
= icon :refresh, t('management.conferences.vote_results.fetch_vote_results')
|
|
|
|
|
|
|
|
.row
|
2016-10-09 00:22:50 +03:00
|
|
|
.col-xs-12
|
|
|
|
h3 = Event.human_attribute_name :participants
|
2015-10-15 20:04:01 +03:00
|
|
|
= render partial: 'speaker', collection: @event.participants
|
2016-10-13 08:59:22 +03:00
|
|
|
|
|
|
|
- if @conference.has_vote_results? or @conference.has_voting_endpoint?
|
|
|
|
.row
|
|
|
|
.col-xs-12
|
|
|
|
h2
|
|
|
|
= t '.conflicts'
|
|
|
|
small< = t '.between_approved_events'
|
|
|
|
.panel.panel-default
|
|
|
|
table.table.table-striped.table-hover.record-table
|
|
|
|
- if @conference.has_vote_results? and @conference.approved_events.count > 2
|
|
|
|
thead
|
|
|
|
tr
|
|
|
|
th.text-right
|
|
|
|
= t '.percent'
|
|
|
|
th
|
|
|
|
= Event.model_name.human.mb_chars.capitalize
|
|
|
|
th
|
|
|
|
tbody
|
|
|
|
- if @conference.has_vote_results?
|
|
|
|
- if @conference.approved_events.count > 2
|
|
|
|
- @event.conflict_counts.where(right_id: @conference.approved_events.pluck(:id)).includes(:right).each do |conflict_count|
|
|
|
|
- conflict_percent = Rational(conflict_count.number_of_conflicts, @conference.number_of_ballots_cast)
|
|
|
|
tr
|
|
|
|
td.text-right
|
|
|
|
.large
|
|
|
|
span.label.label-success data-conflicts="#{conflict_count.number_of_conflicts}" data-most-conflicts="#{@conference.most_conflicts_between_approved_events}" data-least-conflicts="#{@conference.least_conflicts_between_approved_events}"
|
|
|
|
= number_to_percentage(conflict_percent * 100, strip_insignificant_zeros: true, precision: 2)
|
|
|
|
td
|
|
|
|
h4 = conflict_count.right.title
|
|
|
|
h5 = conflict_count.right.subtitle
|
|
|
|
= links_to_event_participants_for(conflict_count.right)
|
|
|
|
|
|
|
|
td.actions
|
|
|
|
= action_buttons @conference, conflict_count.right, [:show]
|
|
|
|
- else
|
|
|
|
tr
|
|
|
|
td colspan="20"
|
|
|
|
= t '.no_approved_events'
|
|
|
|
- else
|
|
|
|
tr
|
|
|
|
td colspan="20"
|
|
|
|
= t 'management.conferences.vote_results.vote_data_never_updated'
|
|
|
|
= icon :refresh, t('management.conferences.vote_results.fetch_vote_results')
|
|
|
|
- if @conference.has_vote_results?
|
|
|
|
.panel-footer.text-right
|
|
|
|
.btn-group
|
2016-10-13 10:39:45 +03:00
|
|
|
= link_to conflicts_management_conference_event_path(@event, conference_id: @conference.id), class: ['btn', 'btn-info'] do
|
|
|
|
= icon :percent, t('.conflicts')
|
2016-10-13 08:59:22 +03:00
|
|
|
= link_to update_vote_data_management_conference_path(@conference), method: :patch, class: ['btn', 'btn-primary'] do
|
|
|
|
= icon :refresh, t('management.conferences.vote_results.fetch_vote_results')
|