Files
openproject/app/components/projects/delete_list_modal_component.html.erb
2025-02-24 10:41:14 +01:00

15 lines
728 B
Plaintext

<%=
render(Primer::OpenProject::DangerDialog.new(title: t(:"projects.lists.delete_modal.title"),
form_arguments: {
action: project_query_path(query),
method: :delete
},
id: MODAL_ID,
test_selector: MODAL_ID)) do |d|
d.with_confirmation_message do |message|
message.with_heading(tag: :h2) { t(:"projects.lists.delete_modal.heading") }
message.with_description_content(t(:"projects.lists.delete_modal.text"))
end
end
%>