scinote-web/app/views/users/settings/teams/_description_modal_body.html.erb

10 lines
358 B
Text
Raw Normal View History

2023-07-03 17:11:51 +08:00
<%= form_with model:team,
url: update_team_path(team,
format: :json),
2023-08-09 21:47:33 +08:00
data: { remote: true },
2023-07-03 17:11:51 +08:00
builder: SciFormHelper::SciFormBuilder,
method: :put do |f| %>
2017-01-25 19:01:23 +08:00
<%= f.smart_text_area :description,
label: t('users.settings.teams.edit.description_label') %>
<% end %>