@@ -169,185 +219,328 @@
@if(ViewBag.repFilters != null)
{
-
-
Filters found:
-
-
- | Filter |
- Times |
-
- @foreach(Filter filter in ViewBag.repFilters)
- {
-
- |
- @filter.Name
- |
-
- @($"{filter.Count}")
- |
-
- }
-
+
+
+
+
+
+
+
+
+
+
+
+ @foreach(Filter filter in ViewBag.repFilters)
+ {
+
+ |
+ @filter.Name
+ |
+
+ @($"{filter.Count}")
+ |
+
+ }
+
+
+
+
+
}
@if(ViewBag.repMediaImages != null)
{
-
}
@if(ViewBag.repPartitions != null)
{
-
-
Partition schemes found:
-
-
- | Partition scheme |
- Times |
-
- @foreach(Partition partition in ViewBag.repPartitions)
- {
-
- |
- @partition.Name
- |
-
- @($"{partition.Count}")
- |
-
- }
-
+
+
+
+
+
+
+
+
+
+
+
+ @foreach(Partition partition in ViewBag.repPartitions)
+ {
+
+ |
+ @partition.Name
+ |
+
+ @($"{partition.Count}")
+ |
+
+ }
+
+
+
+
+
}
@if(ViewBag.repFilesystems != null)
{
-
-
Filesystems found:
-
-
- | Filesystem name |
- Times |
-
- @foreach(Filesystem filesystem in ViewBag.repFilesystems)
- {
-
- |
- @filesystem.Name
- |
-
- @($"{filesystem.Count}")
- |
-
- }
-
+
+
+
+
+
+
+
+
+
+
+
+ @foreach(Filesystem filesystem in ViewBag.repFilesystems)
+ {
+
+ |
+ @filesystem.Name
+ |
+
+ @($"{filesystem.Count}")
+ |
+
+ }
+
+
+
+
+
}
@if(ViewBag.repVirtualMedia != null)
{
-
}
@if(ViewBag.repRealMedia != null)
{
-
}
@if(ViewBag.repDevices != null)
{
-
-
@@ -393,47 +586,56 @@
Next
-
Found devices:
-
-
- | Manufacturer |
- Model |
- Revision |
- Bus |
- Report |
-
- @foreach(DeviceItem device in ViewBag.repDevices)
- {
-
- |
- @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 }
- |
-
- }
-
+
+
+
+
+
+
+
+
+
+
+
+ @foreach(DeviceItem device in ViewBag.repDevices)
+ {
+
+ |
+ @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 }
+ |
+
+ }
+
+
+
}