Tweak ConferencesController#show action buttons

This commit is contained in:
Petko Bordjukov 2016-10-11 03:13:04 +03:00
parent fa879dcb5e
commit ed16969ea1
2 changed files with 11 additions and 7 deletions

View File

@ -6,14 +6,18 @@
h1.page-header
= @conference.title
.pull-right
.small
=> t '.cfp_status'
.btn-group.btn-group-sm<
- if @conference.call_for_participation.in_progress?
= link_to management_conference_call_for_participation_path(@conference), method: :delete, class: 'btn btn-sm btn-success cfp-toggle'
= icon 'dot-circle-o', '', class: 'fa-fw'
= link_to management_conference_call_for_participation_path(@conference), method: :delete, class: 'btn btn-success'
= icon 'dot-circle-o', t('.cfp_status'), class: 'fa-fw'
- else
= link_to management_conference_call_for_participation_path(@conference), method: :post, class: 'btn btn-sm btn-warning cfp-toggle'
= icon 'circle-o', class: 'fa-fw'
= link_to management_conference_call_for_participation_path(@conference), method: :post, class: 'btn btn-primary'
= icon 'circle-o', t('.cfp_status'), class: 'fa-fw'
= link_to edit_management_conference_path(@conference), title: t('actions.edit.button', model: Conference.model_name.human), class: 'btn btn-warning'
= icon :edit
= link_to management_conference_path(@conference), title: t('actions.destroy.button', model: Conference.model_name.human), class: ['btn', 'btn-danger', @conference.events.any? ? 'disabled' : nil], method: :delete, data: {confirm: t('actions.are_you_sure')}
= icon :trash
.row
.col-lg-3.col-md-6
.panel.panel-primary

View File

@ -36,7 +36,7 @@ bg:
vote_data_updated_at: "последно обновяване %{updated_at}"
vote_ratio: "%{votes} от общо %{total_votes} гласа"
summary: 'Обобщение'
cfp_status: 'Състояние на CFP:'
cfp_status: 'Състояние на CFP'
fetch_vote_results: "Изтегли резултатите от гласуването"
percent: "%"
rank: "Позиция"