Skip to content
Snippets Groups Projects
Commit 64ed09e8 authored by Thibault Debatty's avatar Thibault Debatty
Browse files

do not show server info on the servers list (should reduce number of SQL queries)

parent 11ff4ca3
No related branches found
No related tags found
No related merge requests found
Pipeline #13416 passed
...@@ -37,19 +37,7 @@ ...@@ -37,19 +37,7 @@
<a class="text-decoration-none h5" <a class="text-decoration-none h5"
href="{{ action('ServerController@show', ['server' => $server]) }}"> href="{{ action('ServerController@show', ['server' => $server]) }}">
{{ $server->name }} {{ $server->name }}
</a><br> </a>
<small class="text-muted">
<i class="fas fa-microchip"></i> {{ $server->info()->vCores() }} vCores
<i class="fas fa-memory ml-3"></i> {{ $server->info()->memoryTotalForHumans() }}
<i class="fas fa-server ml-3"></i> {{ $server->info()->manufacturer() }} {{ $server->info()->productName() }}
<i class="fas fa-terminal ml-3"></i> {{ $server->info()->lsb() }}
<i class="fas fa-network-wired ml-3"></i>
@foreach ($server->info()->addresses() as $address)
<a href="ssh://{{ $address }}">{{ $address }}</a>
@endforeach
</small>
</td> </td>
<td></td> <td></td>
<td class="text-right"> <td class="text-right">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment