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

index.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: 7a63fc30d9c1997660bf40cdaef09455259a2cab (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
- page_title _('Chat')
- @hide_search_settings = true
- @force_desktop_expanded_sidebar = true

.settings-section.js-search-settings-section.gl-mt-3
  .settings-sticky-header
    .settings-sticky-header-inner
      %h4.gl-my-0
        = page_title

  %h5.gl-font-lg.gl-mt-0
    = sprintf(_('Active chat names (%{count})'), { count: @chat_names.size })

  - if @chat_names.present?
    .table-responsive
      %table.table
        %thead
          %tr
            %th= _('Team domain')
            %th= _('Nickname')
            %th= _('Last used')
            %th
        %tbody
          = render @chat_names

  - else
    .gl-text-secondary.settings-message
      = _("You don't have any active chat names.")