20 lines
571 B
Plaintext
20 lines
571 B
Plaintext
%h3.fix.bpadding10= @user.uname
|
|
|
|
= form_for @user, :url => user_path(@user), :html => { :class => :form } do |f|
|
|
- if current_user.admin?
|
|
.leftlist
|
|
= f.label :role, t("activerecord.attributes.user.role"), :class => :label
|
|
.rightlist
|
|
= f.select :role, User::ROLES, :include_blank => true
|
|
= render :partial => "form", :locals => {:f => f}
|
|
|
|
.notify
|
|
%p= t('layout.users.public_data_edit_warning')
|
|
.notify
|
|
%p= t('layout.users.avatar_notice')
|
|
|
|
:javascript
|
|
$('article .right').addClass('middlepadding');
|
|
|
|
- content_for :sidebar, render('sidebar')
|