mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
15 lines
728 B
Plaintext
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
|
|
%>
|