mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 22:51:24 +08:00
9 lines
358 B
Text
9 lines
358 B
Text
<%= form_with model:team,
|
|
url: update_team_path(team,
|
|
format: :json),
|
|
data: { remote: true },
|
|
builder: SciFormHelper::SciFormBuilder,
|
|
method: :put do |f| %>
|
|
<%= f.smart_text_area :description,
|
|
label: t('users.settings.teams.edit.description_label') %>
|
|
<% end %>
|