33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
.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
|
|
th = User.human_attribute_name :picture
|
|
th = User.human_attribute_name :title
|
|
th = User.human_attribute_name :admin
|
|
th.actions
|
|
tbody
|
|
- @users.each do |user|
|
|
tr
|
|
td= image_tag(user.profile_picture.thumb.url)
|
|
td= user.name
|
|
td.boolean-col
|
|
- if user.admin?
|
|
= icon 'check-square-o'
|
|
- else
|
|
= icon 'minus-square-o'
|
|
|
|
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
|
|
= 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')}
|
|
= icon :trash
|