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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/dashboard/index.html.haml')
-rw-r--r--app/views/admin/dashboard/index.html.haml30
1 files changed, 16 insertions, 14 deletions
diff --git a/app/views/admin/dashboard/index.html.haml b/app/views/admin/dashboard/index.html.haml
index f16158d5656..e34808665bb 100644
--- a/app/views/admin/dashboard/index.html.haml
+++ b/app/views/admin/dashboard/index.html.haml
@@ -101,7 +101,7 @@
enabled: Gitlab.config.registry.enabled,
doc_href: help_page_path('user/packages/container_registry/index'))
- = feature_entry(_('Gitlab Pages'),
+ = feature_entry(_('GitLab Pages'),
enabled: Gitlab.config.pages.enabled,
doc_href: help_instance_configuration_url)
@@ -119,8 +119,7 @@
%p
= link_to _('GitLab'), general_admin_application_settings_path
%span.float-right
- = Gitlab::VERSION
- = "(#{Gitlab.revision})"
+ = link_to_version
%p
= _('GitLab Shell')
%span.float-right
@@ -165,27 +164,30 @@
.gl-card-body
%h4= s_('AdminArea|Latest projects')
- @projects.each do |project|
- %p
- = link_to project.full_name, admin_project_path(project), class: 'str-truncated-60'
- %span.light.float-right
+ .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
.gl-card
.gl-card-body
%h4= s_('AdminArea|Latest users')
- @users.each do |user|
- %p
- = link_to [:admin, user], class: 'str-truncated-60' do
- = user.name
- %span.light.float-right
+ .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
.gl-card
.gl-card-body
%h4= s_('AdminArea|Latest groups')
- @groups.each do |group|
- %p
- = link_to [:admin, group], class: 'str-truncated-60' do
- = group.full_name
- %span.light.float-right
+ .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)}