summaryrefslogtreecommitdiff
path: root/app/views/projects/deployments/_confirm_rollback_modal.html.haml
blob: 23729d6ebf9157cf27784179f063394b8a922203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- commit_sha = link_to deployment.short_sha, project_commit_path(@project, deployment.sha), class: "commit-sha has-tooltip", title: h(deployment.commit_title)
.modal.ws-normal.fade{ tabindex: -1, id: "confirm-rollback-modal-#{deployment.id}" }
  .modal-dialog
    .modal-content
      .modal-header
        %h4.modal-title.d-flex.mw-100
          - if deployment.last?
            = s_("Environments|Re-deploy environment %{environment_name}?") % {environment_name: @environment.name}
          - else
            = s_("Environments|Rollback environment %{environment_name}?") % {environment_name: @environment.name}
      .modal-body
        - if deployment.last?
          %p= s_('Environments|This action will relaunch the job for commit %{commit_id}, putting the environment in a previous version. Are you sure you want to continue?').html_safe % {commit_id: commit_sha}
        - else
          %p
            = s_('Environments|This action will run the job defined by %{environment_name} for commit %{commit_id}, putting the environment in a previous version. You can revert it by re-deploying the latest version of your application. Are you sure you want to continue?').html_safe % {commit_id: commit_sha, environment_name: @environment.name}
      .modal-footer
        = button_tag _('Cancel'), type: 'button', class: 'btn gl-button btn-danger', data: { dismiss: 'modal' }
        = link_to [:retry, @project, deployment.deployable], method: :post, class: 'btn gl-button btn-danger' do
          - if deployment.last?
            = s_('Environments|Re-deploy')
          - else
            = s_('Environments|Rollback')