2014-10-14 20:34:33 +03:00
|
|
|
- content_for :title
|
|
|
|
= Conference.model_name.human(count: 2).mb_chars.capitalize
|
|
|
|
|
|
|
|
.row
|
|
|
|
.col-lg-12
|
|
|
|
.panel.panel-primary
|
|
|
|
.panel-heading
|
|
|
|
h1.panel-title = Conference.model_name.human(count: 2).mb_chars.capitalize
|
|
|
|
.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'
|
|
|
|
=> fa_icon 'plus fw', text: t('actions.create.button', model: Conference.model_name.human)
|