debian-mirror-gitlab/app/views/profiles/chat_names/_chat_name.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
457 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
%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
2019-09-04 21:01:54 +05:30
= _('Never')
2017-08-17 22:00:37 +05:30
%td
2022-05-07 20:08:51 +05:30
= 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' }