34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
.row
|
|
h1.page-header
|
|
= @event.title
|
|
small<
|
|
= @event.subtitle
|
|
h4
|
|
= t 'events.metadata', type: @event.event_type.name, language: t("locales.#{@event.language}").mb_chars.downcase, length: @event.length
|
|
.pull-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])
|
|
|
|
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
|
|
.row
|
|
.col-lg-12
|
|
= render partial: 'speaker', collection: @event.participants
|