diff options
author | Jacopo <beschi.jacopo@gmail.com> | 2017-09-15 17:58:18 +0200 |
---|---|---|
committer | Jacopo <beschi.jacopo@gmail.com> | 2017-09-19 18:21:53 +0200 |
commit | e9771e6842594fcb576139ecaac28918366046c1 (patch) | |
tree | a8d60c35ca410defcb107b295b0eda6e0b938058 /app/views | |
parent | 2203e8fc35b12c19a9a0be1c2c63256047a3c5ff (diff) | |
download | gitlab-ce-e9771e6842594fcb576139ecaac28918366046c1.tar.gz |
Add Gitaly version to Admin Dashboard
Displays the Gitaly version in the admin dashboard.
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin/dashboard/index.html.haml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/views/admin/dashboard/index.html.haml b/app/views/admin/dashboard/index.html.haml index 703f4165128..d212c7ca965 100644 --- a/app/views/admin/dashboard/index.html.haml +++ b/app/views/admin/dashboard/index.html.haml @@ -7,7 +7,7 @@ .row .col-md-4 .info-well - .well-segment.admin-well + .well-segment.admin-well.admin-well-statistics %h4 Statistics %p Forks @@ -43,7 +43,7 @@ = number_with_delimiter(User.active.count) .col-md-4 .info-well - .well-segment.admin-well + .well-segment.admin-well.admin-well-features %h4 Features - sign_up = "Sign up" %p{ "aria-label" => "#{sign_up}: status " + (signup_enabled? ? "on" : "off") } @@ -111,6 +111,10 @@ GitLab API %span.pull-right = API::API::version + %p + Gitaly + %span.pull-right + = Gitlab::GitalyClient.expected_server_version - if Gitlab.config.pages.enabled %p GitLab Pages |