scinote-web/app/views/users/registrations/edit_partials/_full_name.html.erb
2020-07-07 13:17:17 +02:00

13 lines
476 B
Plaintext

<span class="settings-page-full-name user-settings-block">
<label><%= t("users.registrations.edit.name_label") %></label>
<%= render partial: "shared/inline_editing",
locals: {
initial_value: @user.full_name,
config: {
params_group: 'user',
field_to_udpate: 'full_name',
path_to_update: registration_path(resource_name, format: :json)
}
} %>
</span>