Hash :
4def9d5a
Author :
Thomas de Grivel
Date :
2022-01-18T18:19:51
footer
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
<div class="container-fluid">
<div class="row">
<div class="col">
<p>
<code>
"<%= gettext "Hello, world !" %>"
</code>
</p>
<p>
<%= gettext "Welcome to this instance of" %>
<%= link "kmxgit", to: "https://git.kmx.io/kmx.io/kmxgit" %>
.
</p>
<p>
<%= gettext "Anyone can register and create public and private Git repositories." %>
</p>
<h3><%= gettext "SSH keys fingerprint" %></h3>
<pre><%= render("ssh_keys_fingerprint.txt") %></pre>
<h3><%= gettext("Stats") %></h3>
<div class="row">
<div class="col col-12 col-md-5">
<table class="table">
<tr>
<th><%= gettext "Disk usage" %></th>
<td><%= disk_usage(@disk_usage) %></td>
</tr>
<tr>
<th><%= gettext "Users" %></th>
<td><%= @user_count %></td>
</tr>
<tr>
<th><%= gettext "Organisations" %></th>
<td><%= @org_count %></td>
</tr>
<tr>
<th><%= gettext "Repositories" %></th>
<td><%= @repo_count %></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>