2014-10-14 20:34:33 +03:00
|
|
|
- content_for :title
|
|
|
|
= Conference.model_name.human(count: 2).mb_chars.capitalize
|
2016-10-07 04:42:01 +03:00
|
|
|
.container
|
|
|
|
.row
|
|
|
|
h1.page-header
|
|
|
|
= Conference.model_name.human(count: 2).mb_chars.titleize
|
2015-04-20 16:59:16 +03:00
|
|
|
.panel.panel-default
|
2016-10-07 04:42:01 +03:00
|
|
|
table.table.table-striped.table-hover
|
|
|
|
tbody
|
|
|
|
= render @conferences
|
2014-10-14 20:34:33 +03:00
|
|
|
.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'
|