Files
2025-11-21 08:43:44 +01:00

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
%>