<%= form.translated :text_field, :title, autofocus: true, class: "js-hashtags", hashtaggable: true, aria: { label: :title } %>
<%= form.translated :editor, :description, hashtaggable: true, aria: { label: :description } %>
<%= form.select :type_of_meeting, @form.type_of_meeting_select, { include_blank: t(".select_a_meeting_type") }, { multiple: false } %>
<%= form.geocoding_field :address, help_text: t(".address_help") %>
<%= form.translated :text_area, :location, help_text: t(".location_help") %>
<%= form.translated :text_area, :location_hints, help_text: t(".location_hints_help") %>
<%= form.text_field :online_meeting_url, help_text: t(".online_meeting_url_help") %>
<%= form.select :iframe_embed_type, @form.iframe_embed_type_select, { multiple: false, help_text: t(".iframe_embed_type_html", domains: Decidim::Meetings.embeddable_services&.join(" ")) } %>
<%= form.select :iframe_access_level, @form.iframe_access_level_select, { include_blank: t(".select_an_iframe_access_level") }, { multiple: false } %>
<%= form.datetime_field :start_time %>
<%= form.datetime_field :end_time %>
<% if current_component.has_subscopes? %>
<%= scopes_select_field form, :decidim_scope_id, root: current_component.scope %>
<% end %>
<%= form.categories_select :decidim_category_id, current_participatory_space.categories, include_blank: "", disable_parents: false %>
<%= form.select :registration_type, @form.registration_type_select, { include_blank: t(".select_a_registration_type") }, { multiple: false } %>
<%= form.text_field :registration_url, help_text: t(".registration_url_help") %> <%= cell("decidim/announcement", t(".disclaimer", organization: organization_name(current_component.organization)), callout_class: "alert" ) %>
<%= form.check_box :private_meeting %>
<%= form.check_box :transparent %>
<%= render partial: "decidim/comments/admin/shared/availability_fields", locals: { form: } %>
<%= render "decidim/meetings/admin/meetings/services", form: , id: tabs_id_for_service(blank_service) %>
<%= append_javascript_pack_tag "decidim_meetings_admin" %>