debian-mirror-gitlab/app/views/shared/deploy_tokens/_table.html.haml

32 lines
1.4 KiB
Text
Raw Normal View History

2018-05-09 12:01:36 +05:30
%h5= s_("DeployTokens|Active Deploy Tokens (%{active_tokens})") % { active_tokens: active_tokens.length }
- if active_tokens.present?
.table-responsive.deploy-tokens
%table.table
%thead
%tr
%th= s_('DeployTokens|Name')
%th= s_('DeployTokens|Username')
%th= s_('DeployTokens|Created')
%th= s_('DeployTokens|Expires')
%th= s_('DeployTokens|Scopes')
%th
%tbody
- active_tokens.each do |token|
%tr
%td= token.name
%td= token.username
%td= token.created_at.to_date.to_s(:medium)
%td
- if token.expires?
%span{ class: ('text-warning' if token.expires_soon?) }
In #{distance_of_time_in_words_to_now(token.expires_at)}
- else
2020-04-08 14:13:33 +05:30
%span.token-never-expires-label= _('Never')
2020-10-24 23:57:45 +05:30
%td= token.scopes.present? ? token.scopes.join(", ") : html_escape_once(_('<no scopes selected>')).html_safe
2018-11-08 19:23:39 +05:30
%td= link_to s_('DeployTokens|Revoke'), "#", class: "btn btn-danger float-right", data: { toggle: "modal", target: "#revoke-modal-#{token.id}"}
2020-04-08 14:13:33 +05:30
= render 'shared/deploy_tokens/revoke_modal', token: token, group_or_project: group_or_project
2018-05-09 12:01:36 +05:30
- else
.settings-message.text-center
2020-04-08 14:13:33 +05:30
= s_('DeployTokens|This %{entity_type} has no active Deploy Tokens.') % { entity_type: group_or_project.class.name.downcase }