debian-mirror-gitlab/app/views/admin/gitaly_servers/index.html.haml

32 lines
845 B
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- breadcrumb_title _("Gitaly Servers")
%h3.page-title= _("Gitaly Servers")
%hr
.gitaly_servers
- if @gitaly_servers.any?
.table-holder
%table.table.responsive-table
2018-11-08 19:23:39 +05:30
%thead
2018-03-17 18:26:18 +05:30
%tr
%th= _("Storage")
2018-11-08 19:23:39 +05:30
%th= s_("Gitaly|Address")
2018-03-17 18:26:18 +05:30
%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!")