%= form_for(@investment, url: form_url, method: :post, html: { multipart: true }) do |f| %>
<%= render "shared/errors", resource: @investment %>
<%= f.select :heading_id, budget_heading_select_options(@budget), {include_blank: true, } %>
<%= f.text_field :title,
maxlength: Budget::Investment.title_max_length,
data: { js_suggest_result: "js_suggest_result",
js_suggest: "#js-suggest",
js_url: suggest_budget_investments_path(@budget) } %>
<%= f.invisible_captcha :subtitle %>
<%= f.cktext_area :description,
maxlength: Budget::Investment.description_max_length,
ckeditor: { language: I18n.locale } %>
<% if feature?(:allow_images) %>
<%= render "images/nested_image", imageable: @investment, f: f %>
<% end %>
<% if feature?(:allow_attached_documents) %>
<%= render "documents/nested_documents", documentable: @investment, f: f %>
<% end %>
<% if feature?(:map) %>
<%= render "map_locations/form_fields",
form: f,
map_location: @investment.map_location || MapLocation.new,
label: t("budgets.investments.form.map_location"),
help: t("budgets.investments.form.map_location_instructions"),
remove_marker_label: t("budgets.investments.form.map_remove_marker"),
parent_class: "budget_investment",
i18n_namespace: "budgets.investments" %>
<% end %>
<%= f.label :location, t("budgets.investments.form.location") %>
<%= f.text_field :location, label: false %>
<%= f.text_field :organization_name %>
<%= f.label :tag_list, t("budgets.investments.form.tags_label") %>
<%= t("budgets.investments.form.tags_instructions") %>
<%= f.text_field :tag_list, value: @investment.tag_list.to_s,
label: false,
placeholder: t("budgets.investments.form.tags_placeholder"),
aria: {describedby: "tags-list-help-text"},
class: "js-tag-list tag-autocomplete",
data: {js_url: suggest_tags_path} %>
<% unless current_user.manager? %>
<%= f.label :terms_of_service do %>
<%= f.check_box :terms_of_service, title: t("form.accept_terms_title"), label: false %>
<%= t("form.accept_terms",
policy: link_to(t("form.policy"), "/privacy", target: "blank"),
conditions: link_to(t("form.conditions"), "/conditions", target: "blank")).html_safe %>
<% end %>
<% end %>
<%= f.submit(nil, class: "button expanded") %>
<% end %>