debian-mirror-gitlab/app/views/projects/deployments/_deployment.html.haml

50 lines
2.1 KiB
Text
Raw Normal View History

2017-09-10 17:25:29 +05:30
.gl-responsive-table-row.deployment{ role: 'row' }
2019-12-21 20:55:43 +05:30
.table-section.section-15{ role: 'gridcell' }
.table-mobile-header{ role: 'rowheader' }= _("Status")
.table-mobile-content
= render_deployment_status(deployment)
2017-09-10 17:25:29 +05:30
.table-section.section-10{ role: 'gridcell' }
2018-11-08 19:23:39 +05:30
.table-mobile-header{ role: 'rowheader' }= _("ID")
2017-09-10 17:25:29 +05:30
%strong.table-mobile-content ##{deployment.iid}
2019-12-21 20:55:43 +05:30
.table-section.section-10{ role: 'gridcell' }
.table-mobile-header{ role: 'rowheader' }= _("Triggerer")
.table-mobile-content
- if deployment.deployed_by
= user_avatar(user: deployment.deployed_by, size: 26, css_class: "mr-0 float-none")
.table-section.section-25{ role: 'gridcell' }
2018-11-08 19:23:39 +05:30
.table-mobile-header{ role: 'rowheader' }= _("Commit")
= render 'projects/deployments/commit', deployment: deployment
2019-12-21 20:55:43 +05:30
.table-section.section-10.build-column{ role: 'gridcell' }
2018-11-08 19:23:39 +05:30
.table-mobile-header{ role: 'rowheader' }= _("Job")
- if deployment.deployable
2017-09-10 17:25:29 +05:30
.table-mobile-content
.flex-truncate-parent
.flex-truncate-child
2019-12-21 20:55:43 +05:30
= link_to deployment_path(deployment), class: 'build-link' do
2017-09-10 17:25:29 +05:30
#{deployment.deployable.name} (##{deployment.deployable.id})
2019-12-21 20:55:43 +05:30
- else
2021-11-18 22:05:49 +05:30
.badge.badge-info.gl-cursor-help{ title: s_('Deployment|This deployment was created using the API') }
2019-12-21 20:55:43 +05:30
= s_('Deployment|API')
2019-12-21 20:55:43 +05:30
.table-section.section-10{ role: 'gridcell' }
2018-11-08 19:23:39 +05:30
.table-mobile-header{ role: 'rowheader' }= _("Created")
2019-12-21 20:55:43 +05:30
%span.table-mobile-content.flex-truncate-parent
%span.flex-truncate-child
= time_ago_with_tooltip(deployment.created_at)
.table-section.section-10{ role: 'gridcell' }
.table-mobile-header{ role: 'rowheader' }= _("Deployed")
2019-12-04 20:38:33 +05:30
- if deployment.deployed_at
2019-12-21 20:55:43 +05:30
%span.table-mobile-content.flex-truncate-parent
%span.flex-truncate-child
= time_ago_with_tooltip(deployment.deployed_at)
2019-12-21 20:55:43 +05:30
.table-section.section-10.table-button-footer{ role: 'gridcell' }
2017-09-10 17:25:29 +05:30
.btn-group.table-action-buttons
2016-11-03 12:29:30 +05:30
= render 'projects/deployments/actions', deployment: deployment
= render 'projects/deployments/rollback', deployment: deployment