<%#-- copyright OpenProject is an open source project management software. Copyright (C) 2012-2024 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See COPYRIGHT and LICENSE files for more details. ++#%> <%= error_messages_for 'meeting' %>
<%= f.text_field :title, :required => true, :size => 60, container_class: '-wide' %>
<% copy_from = local_assigns[:copy_from] %> <% if copy_from.present? %> <%= f.hidden_field :type, value: copy_from.type %> <%= hidden_field_tag "copied_from_meeting_id", copy_from.id %>
<%= styled_label_tag 'copy_agenda', t('meeting.copy.agenda') %>
<%= styled_check_box_tag 'copy_agenda', 1, true, no_label: true, class: 'radio-button' %>
<%= t('meeting.copy.agenda_text') %>
<%= styled_label_tag 'copy_attachments', t('meeting.copy.attachments') %>
<%= styled_check_box_tag 'copy_attachments', 1, false, no_label: true, class: 'radio-button' %>
<%= t('meeting.copy.attachments_text') %>
<% elsif @meeting.new_record? %>
<% end %> <% if global_meeting_create_context? %>
<%= angular_component_tag 'opce-project-autocompleter', inputs: { filters: [{ name: 'user_action', operator: '=', values: ['meetings/create'] }], inputName: 'project_id', inputValue: @project&.id, appendTo: 'body', hiddenFieldAction: 'change->refresh-on-form-changes#triggerTurboStream', }, id: 'project_id', class: 'form--select-container -wide remote-field--input', data: { 'test-selector': 'project_id' } %>
<% end %>
<%= f.text_field :location, :size => 60, container_class: '-wide' %>
<%= f.date_picker :start_date, id: 'meeting-form-start-date', required: true, no_label: true %> <%= f.text_field :start_time_hour, id: 'meeting-form-start-time', required: true, type: 'time', no_label: true, step: 5.minutes, suffix: Time.zone.to_s, container_class: '-xslim' %>
<%= f.number_field :duration, id: 'meeting-form-duration', required: true, size: 5, no_label: true, min: 0.00, step: 0.25, max: 168, suffix: t(:text_in_hours), container_class: '-xslim' %>
<%= render partial: 'meetings/participants_section' %>