summaryrefslogtreecommitdiff
path: root/app/views/admin/gitaly_servers/index.html.haml
blob: d0cf5761726ef6f418a8ec1ac5e7a24e63ff944f (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
- breadcrumb_title _("Gitaly Servers")

%h3.page-title= _("Gitaly Servers")
%hr
.gitaly_servers
  - if @gitaly_servers.any?
    .table-holder
      %table.table.responsive-table
        %thead.d-none.d-sm-none.d-md-block
          %tr
            %th= _("Storage")
            %th= n_("Gitaly|Address")
            %th= _("Server version")
            %th= _("Git version")
            %th= _("Up to date")
        - @gitaly_servers.each do |server|
          %tr
            %td
              = server.storage
            %td
              = server.address
            %td
              = server.server_version
            %td
              = server.git_binary_version
            %td
              = boolean_to_icon(server.up_to_date?)
  - else
    .empty-state
      .text-center
        %h4= _("No connection could be made to a Gitaly Server, please check your logs!")