diff --git a/DiscImageChef.Server/Views/Stats/Index.cshtml b/DiscImageChef.Server/Views/Stats/Index.cshtml index ae64e60c0..00242dfa4 100644 --- a/DiscImageChef.Server/Views/Stats/Index.cshtml +++ b/DiscImageChef.Server/Views/Stats/Index.cshtml @@ -45,9 +45,7 @@ Server version @ViewBag.Version -
-
- +
@if(ViewBag.repOperatingSystems != null) {
Next
- - @foreach(NameValueStats os in ViewBag.repOperatingSystems) - { - - - - } -
- DiscImageChef has run on @os.name @os.Value times. -
+
+
+
+

+ +

+
+ +
+
+ + @foreach(NameValueStats os in ViewBag.repOperatingSystems) + { + + + + } +
+ DiscImageChef has run on @os.name @os.Value times. +
+
+
+
+

} @if(ViewBag.repVersions != null) { -
- - @foreach(NameValueStats version in ViewBag.repVersions) - { - - - - } -
- DiscImageChef version @version.name has been used @version.Value times. -
+
+
+
+

+ +

+
+ +
+
+ + @foreach(NameValueStats version in ViewBag.repVersions) + { + + + + } +
+ DiscImageChef version @version.name has been used @version.Value times. +
+
+
+
+

} -
@@ -169,185 +219,328 @@
@if(ViewBag.repFilters != null) { -
-

Filters found:

- - - - - - @foreach(Filter filter in ViewBag.repFilters) - { - - - - - } -
FilterTimes
- @filter.Name - - @($"{filter.Count}") -
+
+
+
+

+ +

+
+ +
+
+ + + + + + @foreach(Filter filter in ViewBag.repFilters) + { + + + + + } +
FilterTimes
+ @filter.Name + + @($"{filter.Count}") +
+
+
+
+
} @if(ViewBag.repMediaImages != null) { -
-

Media image formats found:

- - - - - - @foreach(MediaFormat format in ViewBag.repMediaImages) - { - - - - - } -
Media image formatTimes
- @format.Name - - @($"{format.Count}") -
+
+
+
+

+ +

+
+ +
+
+ + + + + + @foreach(MediaFormat format in ViewBag.repMediaImages) + { + + + + + } +
Media image formatTimes
+ @format.Name + + @($"{format.Count}") +
+
+
+
+
} @if(ViewBag.repPartitions != null) { -
-

Partition schemes found:

- - - - - - @foreach(Partition partition in ViewBag.repPartitions) - { - - - - - } -
Partition schemeTimes
- @partition.Name - - @($"{partition.Count}") -
+
+
+
+

+ +

+
+ +
+
+ + + + + + @foreach(Partition partition in ViewBag.repPartitions) + { + + + + + } +
Partitioning schemeTimes
+ @partition.Name + + @($"{partition.Count}") +
+
+
+
+
} @if(ViewBag.repFilesystems != null) { -
-

Filesystems found:

- - - - - - @foreach(Filesystem filesystem in ViewBag.repFilesystems) - { - - - - - } -
Filesystem nameTimes
- @filesystem.Name - - @($"{filesystem.Count}") -
+
+
+
+

+ +

+
+ +
+
+ + + + + + @foreach(Filesystem filesystem in ViewBag.repFilesystems) + { + + + + + } +
Filesystem nameTimes
+ @filesystem.Name + + @($"{filesystem.Count}") +
+
+
+
+
} @if(ViewBag.repVirtualMedia != null) { -
-

Media types found in images:

- - - - - - - @foreach(MediaItem media in ViewBag.repVirtualMedia) - { - - - - - - } -
Physical typeLogical typeTimes
- @media.Type - - @media.SubType - - @($"{media.Count}") -
+
+
+
+

+ +

+
+ +
+
+ + + + + + + @foreach(MediaItem media in ViewBag.repVirtualMedia) + { + + + + + + } +
Physical typeLogical typeTimes
+ @media.Type + + @media.SubType + + @($"{media.Count}") +
+
+
+
+
} @if(ViewBag.repRealMedia != null) { -
-

Media types found in devices:

- - - - - - - @foreach(MediaItem media in ViewBag.repRealMedia) - { - - - - - - } -
Physical typeLogical typeTimes
- @media.Type - - @media.SubType - - @($"{media.Count}") -
+
+
+
+

+ +

+
+ +
+
+ + + + + + + @foreach(MediaItem media in ViewBag.repRealMedia) + { + + + + + + } +
Physical typeLogical typeTimes
+ @media.Type + + @media.SubType + + @($"{media.Count}") +
+
+
+
+
} @if(ViewBag.repDevices != null) { -
- -

Found devices:

- - - - - - - - - @foreach(DeviceItem device in ViewBag.repDevices) - { - - - - - - - - } -
ManufacturerModelRevisionBusReport
- @device.Manufacturer - - @device.Model - - @device.Revision - - @device.Bus - - @if(device.ReportId != 0) - { - @Html.ActionLink("Yes", "View", "Report", new {id = device.ReportId}, new {target = "_blank"}) - } - else - { No } -
+
+
+

+

+ All devices found... +

+ +
+
+ + + + + + + + + @foreach(DeviceItem device in ViewBag.repDevices) + { + + + + + + + + } +
ManufacturerModelRevisionBusReport
+ @device.Manufacturer + + @device.Model + + @device.Revision + + @device.Bus + + @if(device.ReportId != 0) + { + @Html.ActionLink("Yes", "View", "Report", new {id = device.ReportId}, new {target = "_blank"}) + } + else + { No } +
+
+
}

-