2015-05-10 13:36:29 +03:00
|
|
|
.row
|
|
|
|
.col-lg-12
|
|
|
|
.panel.panel-default
|
|
|
|
.panel-heading
|
|
|
|
h2.panel-title= User.model_name.human(count: 2).mb_chars.capitalize
|
|
|
|
.panel-body
|
|
|
|
table.table.table-striped.table-hover.record-table#conferences
|
|
|
|
thead
|
|
|
|
tr
|
2015-05-25 11:41:11 +03:00
|
|
|
th = User.human_attribute_name :picture
|
2015-05-10 13:36:29 +03:00
|
|
|
th = User.human_attribute_name :title
|
|
|
|
th = User.human_attribute_name :admin
|
|
|
|
th.actions
|
|
|
|
tbody
|
2015-05-30 18:53:14 +03:00
|
|
|
- @profiles.each do |profile|
|
|
|
|
- user = profile.user
|
|
|
|
|
2015-05-10 13:36:29 +03:00
|
|
|
tr
|
2015-05-30 18:53:14 +03:00
|
|
|
td= image_tag(profile.picture.thumb.url)
|
|
|
|
td= profile.name
|
2015-05-10 13:36:29 +03:00
|
|
|
td.boolean-col
|
2015-05-30 16:34:49 +03:00
|
|
|
= link_to toggle_admin_management_user_path(user), method: :put do
|
|
|
|
- if user.admin?
|
|
|
|
.btn.btn-primary= icon('circle-o')
|
|
|
|
- else
|
|
|
|
.btn.btn-success= icon('dot-circle-o')
|
2015-05-10 13:36:29 +03:00
|
|
|
|
|
|
|
td.actions
|
|
|
|
div.btn-group.btn-group-sm
|
|
|
|
= link_to management_user_path(user), title: t('actions.view.button', model: User.model_name.human), class: 'btn btn-info'
|
|
|
|
= icon :eye
|
|
|
|
= link_to edit_management_user_path(user), title: t('actions.edit.button', model: User.model_name.human), class: 'btn btn-primary'
|
|
|
|
= icon :edit
|
2015-05-25 11:29:22 +03:00
|
|
|
= link_to management_user_path(user), title: t('actions.destroy.button', model: User.model_name.human), class: ['btn', 'btn-danger'], method: :delete, data: {confirm: t('actions.are_you_sure')}
|
2015-05-10 13:36:29 +03:00
|
|
|
= icon :trash
|