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

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

30 lines
709 B
Text
Raw Normal View History

2019-09-04 21:01:54 +05:30
- page_title _('Chat')
2023-05-27 22:25:52 +05:30
- @hide_search_settings = true
2017-08-17 22:00:37 +05:30
2023-05-27 22:25:52 +05:30
.row.gl-mt-5.js-search-settings-section
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
2020-06-23 00:09:42 +05:30
%h4.gl-mt-0
2017-08-17 22:00:37 +05:30
= page_title
%p
2019-09-04 21:01:54 +05:30
= _('You can see your chat accounts.')
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
.col-lg-8
2022-03-02 08:16:31 +05:30
%h5.gl-mt-0
= sprintf(_('Active chat names (%{count})'), { count: @chat_names.size })
2017-08-17 22:00:37 +05:30
- if @chat_names.present?
.table-responsive
2023-05-27 22:25:52 +05:30
%table.table
2017-08-17 22:00:37 +05:30
%thead
%tr
2019-09-04 21:01:54 +05:30
%th= _('Team domain')
%th= _('Nickname')
%th= _('Last used')
2017-08-17 22:00:37 +05:30
%th
%tbody
= render @chat_names
- else
.settings-message.text-center
2019-09-04 21:01:54 +05:30
= _("You don't have any active chat names.")