<%= form.translated :text_area, :closing_report, autofocus: true, rows: 15 %>
<%= form.text_area :attending_organizations, rows: 5 %>
<%= form.number_field :attendees_count, min: 0 %>
<%= form.number_field :contributions_count, min: 0 %>
<% if @form.proposals %>
<%= form.select :proposal_ids,
@form.proposals.order("title ASC").pluck(:title, :id),
{ include_blank: true },
{ multiple: true, class: "chosen-select" }
%>
<% end %>