94 lines
3.4 KiB
Plaintext
94 lines
3.4 KiB
Plaintext
<%= form_for(@investment, url: form_url, method: :post, html: { multipart: true }) do |f| %>
|
|
<%= render 'shared/errors', resource: @investment %>
|
|
|
|
<div class="row">
|
|
<div class="small-12 medium-8 column">
|
|
<%= f.select :heading_id, budget_heading_select_options(@budget), {include_blank: true, } %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.text_field :title, maxlength: SpendingProposal.title_max_length, data: { js_suggest_result: "js_suggest_result", js_suggest: "#js-suggest", js_url: suggest_budget_investments_path(@budget) }%>
|
|
</div>
|
|
<div id="js-suggest"></div>
|
|
|
|
<%= f.invisible_captcha :subtitle %>
|
|
|
|
<div class="ckeditor small-12 column">
|
|
<%= f.cktext_area :description, maxlength: SpendingProposal.description_max_length, ckeditor: { language: I18n.locale } %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.text_field :external_url %>
|
|
</div>
|
|
|
|
<div class="images small-12 column">
|
|
<%= render 'images/nested_image', imageable: @investment, f: f %>
|
|
</div>
|
|
|
|
<div class="documents small-12 column">
|
|
<%= render 'documents/nested_documents', documentable: @investment, f: f %>
|
|
</div>
|
|
|
|
<% if feature?(:map) %>
|
|
<div class="small-12 column">
|
|
|
|
<%= 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" %>
|
|
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.text_field :location %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.text_field :organization_name %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.label :tag_list, t("budgets.investments.form.tags_label") %>
|
|
<p class="help-text" id="tags-list-help-text"><%= t("budgets.investments.form.tags_instructions") %></p>
|
|
|
|
<div id="category_tags" class="tags">
|
|
<%= f.label :category_tag_list, t("budgets.investments.form.tag_category_label") %>
|
|
<% @categories.each do |tag| %>
|
|
<a class="js-add-tag-link"><%= tag.name %></a>
|
|
<% end %>
|
|
</div>
|
|
|
|
<br>
|
|
<%= 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} %>
|
|
</div>
|
|
|
|
<% unless current_user.manager? %>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.label :terms_of_service do %>
|
|
<%= f.check_box :terms_of_service, title: t('form.accept_terms_title'), label: false %>
|
|
<span class="checkbox">
|
|
<%= t("form.accept_terms",
|
|
policy: link_to(t("form.policy"), "/privacy", target: "blank"),
|
|
conditions: link_to(t("form.conditions"), "/conditions", target: "blank")).html_safe %>
|
|
</span>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<div class="actions small-12 medium-6 large-4 end column">
|
|
<%= f.submit(nil, class: "button expanded") %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|