Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_chat_name.html.haml « chat_names « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afc3894c23bb6f14c112a716597fecac1b04e638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%tr
  %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' }