2019-12-21 20:55:43 +05:30
|
|
|
- if deployment.deployable && can?(current_user, :create_deployment, deployment)
|
2018-11-18 11:00:15 +05:30
|
|
|
- tooltip = deployment.last? ? s_('Environments|Re-deploy to environment') : s_('Environments|Rollback environment')
|
2021-03-11 19:13:27 +05:30
|
|
|
= button_tag class: 'gl-button btn btn-default btn-icon has-tooltip', type: 'button', data: { toggle: 'modal', target: "#confirm-rollback-modal-#{deployment.id}" }, title: tooltip do
|
2016-11-03 12:29:30 +05:30
|
|
|
- if deployment.last?
|
2021-03-11 19:13:27 +05:30
|
|
|
= sprite_icon('repeat', css_class: 'gl-icon')
|
2016-11-03 12:29:30 +05:30
|
|
|
- else
|
2021-03-11 19:13:27 +05:30
|
|
|
= sprite_icon('redo', css_class: 'gl-icon')
|
2019-07-07 11:18:12 +05:30
|
|
|
= render 'projects/deployments/confirm_rollback_modal', deployment: deployment
|