@model DeviceDetails @{ Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; ViewBag.Title = "DiscImageChef"; } @{ // /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Details.cshtml // Author(s) : Natalia Portillo // // Component : DiscImageChef Server. // // --[ License ] -------------------------------------------------------------- // // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the // License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2019 Natalia Portillo // ****************************************************************************/ }

Device report


@Html.DisplayNameFor(model => model.Report.AddedWhen)
@Html.DisplayFor(model => model.Report.AddedWhen)
@Html.DisplayNameFor(model => model.Report.ModifiedWhen)
@Html.DisplayFor(model => model.Report.ModifiedWhen)
@Html.DisplayNameFor(model => model.Report.Manufacturer)
@Html.DisplayFor(model => model.Report.Manufacturer)
@Html.DisplayNameFor(model => model.Report.Model)
@Html.DisplayFor(model => model.Report.Model)
@Html.DisplayNameFor(model => model.Report.Revision)
@Html.DisplayFor(model => model.Report.Revision)
@Html.DisplayNameFor(model => model.Report.CompactFlash)
@Html.DisplayFor(model => model.Report.CompactFlash)
@Html.DisplayNameFor(model => model.Report.OptimalMultipleSectorsRead)
@Html.DisplayFor(model => model.Report.OptimalMultipleSectorsRead)
@Html.DisplayNameFor(model => model.Report.Type)
@Html.DisplayFor(model => model.Report.Type)
Edit Back to List
@if (Model.ReadCapabilitiesId != 0) {
Read capabilities
} @if (Model.Report.ATA != null) {
ATA report
} @if (Model.Report.ATAPI != null) {
ATAPI report
} @if (Model.Report.SCSI != null) {
SCSI report
} @if (Model.Report.MultiMediaCard != null) {
MultiMediaCard report
} @if (Model.Report.SecureDigital != null) {
SecureDigital report
} @if (Model.Report.USB != null) {
USB report
} @if (Model.Report.FireWire != null) {
Has a FireWire report.
} @if (Model.Report.PCMCIA != null) {
Has a PCMCIA report.
} @if (Model.SameAll.Count > 0) {

Other device reports with same manufacturer, model and revision:

@foreach (var item in Model.SameAll) { }
Id
@item Details Merge
} @if (Model.SameButManufacturer.Count > 0) {

Other device reports with same model and revision:

@foreach (var item in Model.SameButManufacturer) { }
Id
@item Details Merge
} @if (Model.ReportAll.Count > 0) {

Uploaded reports with same manufacturer, model and revision:

@foreach (var item in Model.ReportAll) { }
Id
@item Details Merge
} @if (Model.ReportButManufacturer.Count > 0) {

Device reports with same model and revision:

@foreach (var item in Model.ReportButManufacturer) { }
Id
@item Details Merge
} @if (Model.StatsAll.Count > 0) {

Device statistics with same manufacturer, model and revision:

@foreach (var item in Model.StatsAll) { }
@Html.DisplayNameFor(model => model.StatsAll[0].Manufacturer) @Html.DisplayNameFor(model => model.StatsAll[0].Model) @Html.DisplayNameFor(model => model.StatsAll[0].Revision) @Html.DisplayNameFor(model => model.StatsAll[0].Bus) Has a linked report?
@Html.DisplayFor(modelItem => item.Manufacturer) @Html.DisplayFor(modelItem => item.Model) @Html.DisplayFor(modelItem => item.Revision) @Html.DisplayFor(modelItem => item.Bus) @if (item.Report is null) { @("No") } else { @if (item.Report.Id == Model.Report.Id) { @("Us") } else { @("Yes") } } Link
} @if (Model.StatsButManufacturer.Count > 0) {

Device statistics with same model and revision:

@foreach (var item in Model.StatsButManufacturer) { }
@Html.DisplayNameFor(model => model.StatsButManufacturer[0].Manufacturer) @Html.DisplayNameFor(model => model.StatsButManufacturer[0].Model) @Html.DisplayNameFor(model => model.StatsButManufacturer[0].Revision) @Html.DisplayNameFor(model => model.StatsButManufacturer[0].Bus) Has a linked report?
@Html.DisplayFor(modelItem => item.Manufacturer) @Html.DisplayFor(modelItem => item.Model) @Html.DisplayFor(modelItem => item.Revision) @Html.DisplayFor(modelItem => item.Bus) @if (item.Report is null) { @("No") } else { Yes } Link
} @if (Model.TestedMedias.Count > 0) {

Tested media:

@foreach (var item in Model.TestedMedias) { }
@Html.DisplayNameFor(model => model.TestedMedias[0].Manufacturer) @Html.DisplayNameFor(model => model.TestedMedias[0].Model) @Html.DisplayNameFor(model => model.TestedMedias[0].MediumTypeName)
@Html.DisplayFor(modelItem => item.Manufacturer) @Html.DisplayFor(modelItem => item.Model) @Html.DisplayFor(modelItem => item.MediumTypeName) Details
} @if (Model.TestedSequentialMedias.Count > 0) {

Tested media:

@foreach (var item in Model.TestedSequentialMedias) { }
@Html.DisplayNameFor(model => model.TestedSequentialMedias[0].Manufacturer) @Html.DisplayNameFor(model => model.TestedSequentialMedias[0].Model) @Html.DisplayNameFor(model => model.TestedSequentialMedias[0].MediumTypeName)
@Html.DisplayFor(modelItem => item.Manufacturer) @Html.DisplayFor(modelItem => item.Model) @Html.DisplayFor(modelItem => item.MediumTypeName) Delete
}