1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/settings/profiles/edit.html.erb

28 lines
845 B
Text
Raw Normal View History

<div class="container">
<div class="row">
<div class="col-md-3 mb-4">
<%= render partial: 'settings/nav_sidebar', locals: { tab: :profile } %>
</div>
<div class="col-md-9">
2019-01-31 22:43:26 -05:00
<%= simple_form_for @account, url: settings_profile_path do |f| %>
2019-01-31 22:06:20 -05:00
<%= f.error_notification %>
<div class="form-inputs">
2019-03-24 15:27:06 -04:00
<%= f.input :nickname, required: true %>
2019-02-01 16:52:45 -05:00
<%= f.input :public_name %>
2019-01-31 23:23:01 -05:00
<%= f.input :biography %>
2019-03-23 19:59:38 -04:00
<%= f.input :avatar, direct_upload: true %>
<% if f.object.avatar.attached? %>
<%= image_tag f.object.avatar, class: 'img-thumbnail mb-4' %>
<% end %>
2019-01-31 22:06:20 -05:00
</div>
<div class="form-actions">
<%= f.button :submit, translate('users.registrations.edit.update') %>
</div>
<% end %>
</div>
</div>
</div>