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