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

index.html.haml « gitaly_servers « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b06f145687250420a6e83e9020db9c5f691989b (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
- breadcrumb_title _("Gitaly Servers")
- page_title _("Gitaly Servers")

%h3.page-title= _("Gitaly Servers")
%hr
.gitaly_servers
  - if @gitaly_servers.any?
    .table-holder
      %table.table.responsive-table
        %thead
          %tr
            %th= _("Storage")
            %th= s_("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!")