2014-10-14 20:34:33 +03:00
|
|
|
tr
|
|
|
|
td = conference.title
|
2014-10-14 21:58:13 +03:00
|
|
|
td.hidden-xs.hidden-sm = l conference.start_date.to_date, format: :long
|
|
|
|
td.hidden-xs.hidden-sm = l conference.end_date.to_date, format: :long
|
|
|
|
td.action
|
2015-05-24 01:15:46 +03:00
|
|
|
= render partial: 'management/call_for_participations/status', locals: {conference: conference}
|
2014-10-14 21:58:13 +03:00
|
|
|
|
2014-10-14 20:34:33 +03:00
|
|
|
td = conference.events.count
|
|
|
|
td.actions
|
|
|
|
div.btn-group.btn-group-sm
|
|
|
|
= link_to management_conference_path(conference), title: t('actions.view.button', model: Conference.model_name.human), class: 'btn btn-info'
|
2015-04-09 00:10:04 +03:00
|
|
|
= icon :eye
|
2014-10-14 20:34:33 +03:00
|
|
|
= link_to edit_management_conference_path(conference), title: t('actions.edit.button', model: Conference.model_name.human), class: 'btn btn-primary'
|
2015-04-09 00:10:04 +03:00
|
|
|
= icon :edit
|
2014-10-14 23:55:17 +03:00
|
|
|
= 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], remote: true, method: :delete, data: {confirm: t('actions.are_you_sure')}
|
2015-04-09 00:10:04 +03:00
|
|
|
= icon :trash
|