2014-10-14 20:34:33 +03:00
|
|
|
- content_for :title
|
|
|
|
= Conference.model_name.human(count: 2).mb_chars.capitalize
|
|
|
|
|
|
|
|
.row
|
|
|
|
.col-lg-12
|
2015-04-20 16:59:16 +03:00
|
|
|
.panel.panel-default
|
2014-10-14 20:34:33 +03:00
|
|
|
.panel-heading
|
2015-04-20 16:59:16 +03:00
|
|
|
h2.panel-title = Conference.model_name.human(count: 2).mb_chars.capitalize
|
2014-10-14 20:34:33 +03:00
|
|
|
.panel-body
|
2014-10-14 21:58:13 +03:00
|
|
|
table.table.table-striped.table-hover.record-table#conferences
|
2014-10-14 20:34:33 +03:00
|
|
|
thead
|
|
|
|
tr
|
|
|
|
th = Conference.human_attribute_name :title
|
2014-10-14 21:58:13 +03:00
|
|
|
th.hidden-xs.hidden-sm = Conference.human_attribute_name :start_date
|
|
|
|
th.hidden-xs.hidden-sm = Conference.human_attribute_name :end_date
|
|
|
|
th.action = Conference.human_attribute_name :call_for_papers_open
|
2014-10-14 20:34:33 +03:00
|
|
|
th = Conference.human_attribute_name :submissions
|
|
|
|
th.actions
|
|
|
|
tbody
|
|
|
|
= render @conferences
|
|
|
|
.panel-footer
|
|
|
|
.text-right
|
|
|
|
= link_to new_management_conference_path, class: 'btn btn-primary'
|
2015-04-09 00:10:04 +03:00
|
|
|
=> icon 'plus', t('actions.create.button', model: Conference.model_name.human), class: 'fa-fw'
|