mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
27 lines
614 B
Plaintext
27 lines
614 B
Plaintext
<%=
|
|
flex_layout do |form_wrapper|
|
|
form_wrapper.with_row(mb: 3) do
|
|
render(Primer::Beta::Heading.new(tag: :h3, size: :large)) do
|
|
section.name
|
|
end
|
|
end
|
|
|
|
form_wrapper.with_row do
|
|
primer_form_with(
|
|
model: project,
|
|
method: :patch,
|
|
url: project_creation_wizard_path(project, section: @section.id),
|
|
html: { id: "project-wizard-form" }
|
|
) do |f|
|
|
render(
|
|
Projects::Wizard::CustomFieldsForm.new(
|
|
f,
|
|
project: project,
|
|
custom_fields: custom_fields
|
|
)
|
|
)
|
|
end
|
|
end
|
|
end
|
|
%>
|