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

index.html.haml « dashboard « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bac237c35c73cdf8eefb56b606d46f2adbfae8dd (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
- breadcrumb_title _("Dashboard")
- page_title _("Dashboard")
- billable_users_url = help_page_path('subscriptions/self_managed/index', anchor: 'billable-users')
- billable_users_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer nofollow">'.html_safe % { url: billable_users_url }

= render_if_exists 'shared/manual_quarterly_reconciliation_banner'
= render_if_exists 'shared/submit_license_usage_data_banner'
= render_if_exists 'shared/qrtly_reconciliation_alert'
= render 'admin/dashboard/security_newsletter_callout'

- if @notices
  - @notices.each do |notice|
    .js-vue-alert{ 'v-cloak': true, data: { variant: notice[:type],
      dismissible: true.to_s } }
      = notice[:message].html_safe

- if @license.present?
  .license-panel.gl-mt-5
    = render_if_exists 'admin/licenses/summary'
    = render_if_exists 'admin/licenses/breakdown'

.admin-dashboard.gl-mt-3
  .h3.gl-mb-5.gl-mt-0= _('Instance overview')
  .row
    - component_params = { body_options: { class: 'gl-display-flex gl-justify-content-space-between gl-align-items-baseline' } }
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new(**component_params) do |c|
        - c.with_body do
          %span
            .gl-display-flex.gl-align-items-center
              = sprite_icon('project', size: 16, css_class: 'gl-text-gray-700')
              %h3.gl-heading-2.gl-ml-3{ class: 'gl-mb-0!' }= approximate_count_with_delimiters(@counts, Project)
            .gl-heading-4{ class: 'gl-mb-0!' }= s_('AdminArea|Projects')
          = render Pajamas::ButtonComponent.new(href: new_project_path) do
            = s_('AdminArea|New project')
        - c.with_footer do
          .gl-display-flex.gl-align-items-center
            = link_to(s_('AdminArea|View latest projects'), admin_projects_path(sort: 'created_desc'))
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new(**component_params) do |c|
        - c.with_body do
          %span
            .gl-display-flex.gl-align-items-center
              = sprite_icon('users', size: 16, css_class: 'gl-text-gray-700')
              %h3.gl-heading-2.gl-ml-3{ class: 'gl-mb-0!' }= approximate_count_with_delimiters(@counts, User)
              %span.gl-outline-0.gl-ml-3{ tabindex: "0", data: { container: "body",
                toggle: "popover",
                placement: "top",
                html: "true",
                trigger: "focus",
                content: s_("AdminArea|All users created in the instance, including users who are not %{billable_users_link_start}billable users%{billable_users_link_end}.").html_safe % { billable_users_link_start: billable_users_link_start, billable_users_link_end: '</a>'.html_safe },
              } }
                = sprite_icon('question-o', size: 16, css_class: 'gl-text-blue-600')
            .gl-heading-4{ class: 'gl-mb-0!' }
              = s_('AdminArea|Users')
          = render Pajamas::ButtonComponent.new(href: new_admin_user_path) do
            = s_('AdminArea|New user')
        - c.with_footer do
          .gl-display-flex.gl-flex-wrap.gl-align-items-center.gl-gap-2
            = link_to(s_('AdminArea|View latest users'), admin_users_path({ sort: 'created_desc' }))
            %span.gl-text-secondary= "/"
            = link_to(s_('AdminArea|Users statistics'), admin_dashboard_stats_path, class: "gl-font-base gl-font-weight-normal gl-text-capitalize")
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new(**component_params) do |c|
        - c.with_body do
          %span
            .gl-display-flex.gl-align-items-center
              = sprite_icon('group', size: 16, css_class: 'gl-text-gray-700')
              %h3.gl-heading-2.gl-ml-3{ class: 'gl-mb-0!' }= approximate_count_with_delimiters(@counts, Group)
            .gl-heading-4{ class: 'gl-mb-0!' }= s_('AdminArea|Groups')
          = render Pajamas::ButtonComponent.new(href: new_admin_group_path) do
            = s_('AdminArea|New group')
        - c.with_footer do
          .gl-display-flex.gl-align-items-center
            = link_to(s_('AdminArea|View latest groups'), admin_groups_path(sort: 'created_desc'))
  .row
    .col-md-4.gl-mb-6
      #js-admin-statistics-container
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new do |c|
        - c.with_body do
          %h4.gl-heading-4= s_('AdminArea|Features')
          = feature_entry(_('Sign up'),
            href: general_admin_application_settings_path(anchor: 'js-signup-settings'),
            enabled: allow_signup?)

          = feature_entry(_('LDAP'),
            enabled: Gitlab.config.ldap.enabled,
            doc_href: help_page_path('administration/auth/ldap/index'))

          = feature_entry(_('Gravatar'),
            href: general_admin_application_settings_path(anchor: 'js-account-settings'),
            enabled: gravatar_enabled?)

          = feature_entry(_('OmniAuth'),
            href: general_admin_application_settings_path(anchor: 'js-signin-settings'),
            enabled: Gitlab::Auth.omniauth_enabled?,
            doc_href: help_page_path('integration/omniauth'))

          = feature_entry(_('Reply by email'),
            enabled: Gitlab::Email::IncomingEmail.enabled?,
            doc_href: help_page_path('administration/reply_by_email'))

          = render_if_exists 'admin/dashboard/elastic_and_geo'

          = feature_entry(_('Container Registry'),
            href: ci_cd_admin_application_settings_path(anchor: 'js-registry-settings'),
            enabled: Gitlab.config.registry.enabled,
            doc_href: help_page_path('user/packages/container_registry/index'))

          = feature_entry(_('GitLab Pages'),
            enabled: Gitlab.config.pages.enabled,
            doc_href: help_instance_configuration_url)

          = feature_entry(_('Shared Runners'),
            href: admin_runners_path,
            enabled: Gitlab.config.gitlab_ci.shared_runners_enabled)
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new do |c|
        - c.with_body do
          %h4.gl-heading-4
            = s_('AdminArea|Components')
            - if show_version_check?
              .float-right
                .js-gitlab-version-check-badge{ data: { "size": "lg", "actionable": "true", "version": gitlab_version_check.to_json } }
                = link_to(sprite_icon('question-o'), "https://gitlab.com/gitlab-org/gitlab/-/blob/master/CHANGELOG.md", class: 'gl-ml-2', target: '_blank', rel: 'noopener noreferrer')
          %p
            = link_to _('GitLab'), general_admin_application_settings_path
            %span.float-right
              = link_to_version
          %p
            = _('GitLab Shell')
            %span.float-right
              = Gitlab::Shell.version
          %p
            = _('GitLab Workhorse')
            %span.float-right
              = gitlab_workhorse_version
          %p
            = _('GitLab API')
            %span.float-right
              = API::API::version
          - if Gitlab.config.pages.enabled
            %p
              = _('GitLab Pages')
              %span.float-right
                = Gitlab::Pages::VERSION
          - if Gitlab::Kas.enabled?
            %p
              = _('GitLab KAS')
              %span.gl-float-right
                = Gitlab::Kas.version

          = render_if_exists 'admin/dashboard/geo'

          %p
            = _('Ruby')
            %span.float-right
              #{RUBY_VERSION}p#{RUBY_PATCHLEVEL}
          %p
            = _('Rails')
            %span.float-right
              #{Rails::VERSION::STRING}
          - database_versions.each do |database_name, database|
            %p
              #{database[:adapter_name]} (#{database_name})
              %span.float-right
                = database[:version]
          %p
            = _('Redis')
            %span.float-right
              = @redis_versions&.join(", ")
          %p
            = link_to _("Gitaly Servers"), admin_gitaly_servers_path
  .row
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new do |c|
        - c.with_body do
          %h4.gl-heading-4= s_('AdminArea|Latest projects')
          - @projects.each do |project|
            .gl-display-flex.gl-py-3
              .gl-mr-auto.gl-overflow-hidden.gl-text-overflow-ellipsis
                = link_to project.full_name, admin_project_path(project)
              %span.gl-white-space-nowrap.gl-text-right
                #{time_ago_with_tooltip(project.created_at)}
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new do |c|
        - c.with_body do
          %h4.gl-heading-4= s_('AdminArea|Latest users')
          - @users.each do |user|
            .gl-display-flex.gl-py-3
              .gl-mr-auto.gl-overflow-hidden.gl-text-overflow-ellipsis
                = link_to [:admin, user] do
                  = user.name
              %span.gl-white-space-nowrap.gl-text-right
                #{time_ago_with_tooltip(user.created_at)}
    .col-md-4.gl-mb-6
      = render Pajamas::CardComponent.new do |c|
        - c.with_body do
          %h4.gl-heading-4= s_('AdminArea|Latest groups')
          - @groups.each do |group|
            .gl-display-flex.gl-py-3
              .gl-mr-auto.gl-overflow-hidden.gl-text-overflow-ellipsis
                = link_to [:admin, group] do
                  = group.full_name
              %span.gl-white-space-nowrap.gl-text-right
                #{time_ago_with_tooltip(group.created_at)}