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
|
2015-07-26 14:58:56 +03:00
|
|
|
= action_buttons(@conference, user, [:show, :edit, :destroy])
|