summaryrefslogtreecommitdiff
path: root/app/views/profiles/chat_names/_chat_name.html.haml
blob: ce2fc2098c506fe67ff1c1af4d3d8a9cec7b10c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- integration = chat_name.integration
- project = integration&.project
%tr
  %td
    %strong
      - if project.present? && can?(current_user, :read_project, project)
        = link_to project.full_name, project_path(project)
      - else
        .light= _('Not applicable.')
  %td
    %strong
      - if integration.present? && can?(current_user, :admin_project, project)
        = link_to integration.title, edit_project_settings_integration_path(project, integration)
      - elsif integration.present?
        = integration.title
      - else
        .light= _('Not applicable.')
  %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' }