<%= form.text_field :title, autofocus: true, class: "js-hashtags", hashtaggable: true %>
<%= text_editor_for(form, :description, hashtaggable: true) %>
<%= form.geocoding_field :address %>
<%= t(".address_help") %>
<%= form.text_area :location %>
<%= t(".location_help") %>
<%= form.text_area :location_hints %>
<%= t(".location_hints_help") %>
<%= form.datetime_field :start_time %>
<%= form.datetime_field :end_time %>
<% if current_participatory_space.has_subscopes? %>
<%= scopes_picker_field form, :decidim_scope_id %>
<% end %>
<%= form.categories_select :decidim_category_id, current_participatory_space.categories, prompt: t(".select_a_category"), disable_parents: false %>
<%= form.select(
:user_group_id,
Decidim::UserGroups::ManageableUserGroups.for(current_user).verified.map{|g| [g.name, g.id]},
prompt: current_user.name,
label: t(".create_as")
) %>
<%= javascript_include_tag "decidim/meetings/meetings_form" %>