@model IEnumerable @{ Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; ViewBag.Title = "DiscImageChef"; } @{ // /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Index.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 // ****************************************************************************/ } @foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.PrimaryCode) @Html.DisplayNameFor(model => model.SecondaryCode) @Html.DisplayNameFor(model => model.Writable) @Html.DisplayNameFor(model => model.Duplicate) @Html.DisplayNameFor(model => model.DefaultDensity) @Html.DisplayNameFor(model => model.BitsPerMm) @Html.DisplayNameFor(model => model.Width) @Html.DisplayNameFor(model => model.Tracks) @Html.DisplayNameFor(model => model.Capacity) @Html.DisplayNameFor(model => model.Organization) @Html.DisplayNameFor(model => model.Name) @Html.DisplayNameFor(model => model.Description)
@Html.DisplayFor(modelItem => item.PrimaryCode) @Html.DisplayFor(modelItem => item.SecondaryCode) @Html.DisplayFor(modelItem => item.Writable) @Html.DisplayFor(modelItem => item.Duplicate) @Html.DisplayFor(modelItem => item.DefaultDensity) @Html.DisplayFor(modelItem => item.BitsPerMm) @Html.DisplayFor(modelItem => item.Width) @Html.DisplayFor(modelItem => item.Tracks) @Html.DisplayFor(modelItem => item.Capacity) @Html.DisplayFor(modelItem => item.Organization) @Html.DisplayFor(modelItem => item.Name) @Html.DisplayFor(modelItem => item.Description) Details Edit Delete