mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
19 lines
711 B
Plaintext
19 lines
711 B
Plaintext
<%= render(Primer::Beta::Text.new(tag: :p, font_weight: :bold)) { @status_text } %>
|
|
<% if @status_explanation %>
|
|
<%= render(Primer::Beta::Text.new(tag: :p)) { @status_explanation } %>
|
|
<% end %>
|
|
|
|
<% if artifact_work_package %>
|
|
<%= render(Primer::Beta::Button.new(
|
|
mt: 2,
|
|
tag: :a,
|
|
href: project_work_packages_path(project, artifact_work_package),
|
|
)) { t("settings.project_initiation_request.status.submitted_button")} %>
|
|
<% elsif artifact_id.blank? %>
|
|
<%= render(Primer::Beta::Button.new(
|
|
mt: 2,
|
|
tag: :a,
|
|
href: project_creation_wizard_path(project)
|
|
)) { t("settings.project_initiation_request.wizard_status_button.#{project.project_creation_wizard_artifact_name}")} %>
|
|
<% end %>
|