@{ /****************************************************************************** // Canary Islands Computer Museum Website // ---------------------------------------------------------------------------- // // Filename : Index.cshtml // Author(s) : Natalia Portillo // // --[ Description ] ---------------------------------------------------------- // // Admin view index // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program 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 General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2003-2018 Natalia Portillo *******************************************************************************/ } @using Cicm.Database.Models @model IEnumerable @{ ViewData["Title"] = "Browser tests (Admin)"; }

Browser tests

Create New

@foreach(BrowserTest item in Model) { }
@Html.DisplayNameFor(model => model.UserAgent) @Html.DisplayNameFor(model => model.Browser) @Html.DisplayNameFor(model => model.Version) @Html.DisplayNameFor(model => model.Os) @Html.DisplayNameFor(model => model.Platform) @Html.DisplayNameFor(model => model.Gif87) @Html.DisplayNameFor(model => model.Gif89) @Html.DisplayNameFor(model => model.Jpeg) @Html.DisplayNameFor(model => model.Png) @Html.DisplayNameFor(model => model.Pngt) @Html.DisplayNameFor(model => model.Agif) @Html.DisplayNameFor(model => model.Table) @Html.DisplayNameFor(model => model.Colors) @Html.DisplayNameFor(model => model.Js) @Html.DisplayNameFor(model => model.Frames) @Html.DisplayNameFor(model => model.Flash)
@Html.DisplayFor(modelItem => item.UserAgent) @Html.DisplayFor(modelItem => item.Browser) @Html.DisplayFor(modelItem => item.Version) @Html.DisplayFor(modelItem => item.Os) @Html.DisplayFor(modelItem => item.Platform) @Html.DisplayFor(modelItem => item.Gif87) @Html.DisplayFor(modelItem => item.Gif89) @Html.DisplayFor(modelItem => item.Jpeg) @Html.DisplayFor(modelItem => item.Png) @Html.DisplayFor(modelItem => item.Pngt) @Html.DisplayFor(modelItem => item.Agif) @Html.DisplayFor(modelItem => item.Table) @Html.DisplayFor(modelItem => item.Colors) @Html.DisplayFor(modelItem => item.Js) @Html.DisplayFor(modelItem => item.Frames) @Html.DisplayFor(modelItem => item.Flash) Details Edit Delete