mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
8 lines
334 B
Text
8 lines
334 B
Text
<%= bootstrap_form_for team,
|
|
url: update_team_path(team,
|
|
format: :json),
|
|
remote: :true,
|
|
method: :put do |f| %>
|
|
<%= f.smart_text_area :description,
|
|
label: t('users.settings.teams.edit.description_label') %>
|
|
<% end %>
|