@model Watcher.ViewModels.ServerDetailsViewModel @{ ViewData["Title"] = "Serverübersicht"; }
@Model.Name
@(Model.IsOnline ? "Online" : "Offline")
IP: @Model.IPAddress
Typ: @Model.Type
Erstellt: @Model.CreatedAt.ToLocalTime().ToString("dd.MM.yyyy HH:mm")
Last-Seen: @Model.LastSeen.ToLocalTime().ToString("dd.MM.yyyy HH:mm")
CPU: @(Model.CpuType ?? "not found")
CPU-Kerne: @Model.CpuCores
GPU: @(Model.GpuType ?? "not found")
RAM: @(Model.RamSize)
Disk Space: ...
CPU Last
RAM Last
GPU Last
@section Scripts { }