Sha256: 0f3ba8929850b3c59eb2fc4aaef04e48364ae78835e77136de21901ad5f55255
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 KB
Contents
.row .col-md-2 .col-md-8 .panel.panel-default .panel-body .author %img.pull-right.thumbnail{ src: entity.gravatar } %h4= entity.email %hr %p.description %label Name: = entity.name %p.description %label Surname: = entity.surname %p.description %label Roles: = entity.roles_dataset.map(:name).map(&:titlecase).join(', ') %p.description %label Signed up: = entity.created_at.strftime('%Y-%m-%d %H:%M:%S') .row .col-md-6 - if policy(entity).update? %a.btn.btn-default{ href: "#{base_path}/#{entity.id}/edit" } Edit .col-md-6.text-right - if policy(entity).delete? = delete_form_tag("#{base_path}/#{entity.id}") do %button.btn.btn-warning{ type: 'submit' } Delete .col-md-2 .row .col-md-2 .col-md-8 .panel.panel-default .panel-heading %h4 Change Password .panel-body = edit_form_tag("#{base_path}/#{entity.id}/identity") do = form_control(:old_password, identity, type: 'password', placeholder: 'Your current password') = form_control(:password, identity, type: 'password', placeholder: 'Your new password') = form_control(:password_confirmation, identity, type: 'password', label: 'Confirm Password', placeholder: 'Confirm your password') %button.btn.btn-primary{ type: 'submit' } Change Password .col-md-2 = haml :'users/login_traits', locals: { user_login_traits: entity.user_login_traits }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ditty-0.8.0 | views/users/profile.haml |