clarion/app/views/management/personal_profiles/index.html.slim

31 lines
1.1 KiB
Plaintext
Raw Normal View History

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
- @profiles.each do |profile|
- user = profile.user
2015-05-10 13:36:29 +03:00
tr
td= image_tag(profile.picture.thumb.url)
td= profile.name
2015-05-10 13:36:29 +03:00
td.boolean-col
2015-07-28 15:43:19 +03:00
= link_to [:toggle_admin, :management, @conference, profile], method: :put do
2015-05-30 16:34:49 +03:00
- 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-28 15:43:19 +03:00
= action_buttons(@conference, profile, [:show, :edit, :destroy])