gitlab-org--gitlab-foss/app/views/profiles/chat_names/_chat_name.html.haml

28 lines
920 B
Plaintext

- integration = chat_name.integration
- project = integration.project
%tr
%td
%strong
- if can?(current_user, :read_project, project)
= link_to project.full_name, project_path(project)
- else
.light= _('Not applicable.')
%td
%strong
- if can?(current_user, :admin_project, project)
= link_to integration.title, edit_project_settings_integration_path(project, integration)
- else
= integration.title
%td
= chat_name.team_domain
%td
= chat_name.chat_name
%td
- if chat_name.last_used_at
= time_ago_with_tooltip(chat_name.last_used_at)
- else
= _('Never')
%td
= link_to _('Remove'), profile_chat_name_path(chat_name), method: :delete, class: 'gl-button btn btn-danger float-right', aria: { label: _('Remove') }, data: { confirm: _('Are you sure you want to remove this nickname?'), confirm_btn_variant: 'danger' }