@model FindReportModel @{ Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; ViewBag.Title = "DiscImageChef"; } @{ // /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Find.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 // ****************************************************************************/ }

Found device reports with similar data


@Html.DisplayNameFor(model => model.Manufacturer)
@Html.DisplayFor(model => model.Manufacturer)
@Html.DisplayNameFor(model => model.Model)
@Html.DisplayFor(model => model.Model)
@Html.DisplayNameFor(model => model.Revision)
@Html.DisplayFor(model => model.Revision)
@Html.DisplayNameFor(model => model.Bus)
@Html.DisplayFor(model => model.Bus)
@if (Model.LikeDevices.Count == 0) {
No device report with similar information has been found!
} else { @foreach (var item in Model.LikeDevices) { }
@Html.DisplayNameFor(model => model.LikeDevices[0].Manufacturer) @Html.DisplayNameFor(model => model.LikeDevices[0].Model) @Html.DisplayNameFor(model => model.LikeDevices[0].Revision) @Html.DisplayNameFor(model => model.LikeDevices[0].CompactFlash) @Html.DisplayNameFor(model => model.LikeDevices[0].Type)
@Html.DisplayFor(modelItem => item.Manufacturer) @Html.DisplayFor(modelItem => item.Model) @Html.DisplayFor(modelItem => item.Revision) @Html.DisplayFor(modelItem => item.CompactFlash) @Html.DisplayFor(modelItem => item.Type) Link
}