2018-08-11 10:50:22 +01:00
|
|
|
@{
|
|
|
|
|
/******************************************************************************
|
|
|
|
|
// Canary Islands Computer Museum Website
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : Index.cshtml
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// --[ 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// Copyright © 2003-2018 Natalia Portillo
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
}
|
2019-05-18 12:00:22 +01:00
|
|
|
@using Cicm.Database.Models
|
2018-08-11 10:50:22 +01:00
|
|
|
@model IEnumerable<Cicm.Database.Models.Gpu>
|
|
|
|
|
|
|
|
|
|
@{
|
2019-05-18 12:04:41 +01:00
|
|
|
ViewData["Title"] = "GPUs (Admin)";
|
2018-08-11 10:50:22 +01:00
|
|
|
}
|
|
|
|
|
|
2019-05-18 12:04:41 +01:00
|
|
|
<h2>GPUs</h2>
|
2018-08-11 10:50:22 +01:00
|
|
|
|
|
|
|
|
<p>
|
2019-05-18 12:00:22 +01:00
|
|
|
<a asp-action="Create"
|
|
|
|
|
class="btn btn-primary">
|
|
|
|
|
Create New
|
|
|
|
|
</a>
|
2018-08-11 10:50:22 +01:00
|
|
|
</p>
|
|
|
|
|
<table class="table">
|
|
|
|
|
<thead>
|
2019-05-18 12:00:22 +01:00
|
|
|
<tr>
|
2019-05-18 19:47:05 +01:00
|
|
|
<th>
|
|
|
|
|
@Html.DisplayNameFor(model => model.Company)
|
|
|
|
|
</th>
|
2019-05-18 12:00:22 +01:00
|
|
|
<th>
|
|
|
|
|
@Html.DisplayNameFor(model => model.Name)
|
|
|
|
|
</th>
|
|
|
|
|
<th>
|
|
|
|
|
@Html.DisplayNameFor(model => model.ModelCode)
|
|
|
|
|
</th>
|
|
|
|
|
<th>
|
|
|
|
|
@Html.DisplayNameFor(model => model.Introduced)
|
|
|
|
|
</th>
|
|
|
|
|
<th></th>
|
|
|
|
|
</tr>
|
2018-08-11 10:50:22 +01:00
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2019-05-18 12:00:22 +01:00
|
|
|
@foreach(Gpu item in Model)
|
|
|
|
|
{
|
2018-08-11 10:50:22 +01:00
|
|
|
<tr>
|
2019-05-18 19:47:05 +01:00
|
|
|
<td>
|
|
|
|
|
@Html.DisplayFor(modelItem => item.Company.Name)
|
|
|
|
|
</td>
|
2018-08-11 10:50:22 +01:00
|
|
|
<td>
|
|
|
|
|
@Html.DisplayFor(modelItem => item.Name)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
@Html.DisplayFor(modelItem => item.ModelCode)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
@Html.DisplayFor(modelItem => item.Introduced)
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
2019-05-18 12:00:22 +01:00
|
|
|
<a asp-action="Details"
|
|
|
|
|
asp-route-id="@item.Id"
|
|
|
|
|
class="btn btn-primary">
|
|
|
|
|
Details
|
|
|
|
|
</a>
|
|
|
|
|
<a asp-action="Edit"
|
|
|
|
|
asp-route-id="@item.Id"
|
|
|
|
|
class="btn btn-secondary">
|
|
|
|
|
Edit
|
|
|
|
|
</a>
|
|
|
|
|
<a asp-action="Delete"
|
|
|
|
|
asp-route-id="@item.Id"
|
|
|
|
|
class="btn btn-danger">
|
|
|
|
|
Delete
|
|
|
|
|
</a>
|
2018-08-11 10:50:22 +01:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
2019-05-18 12:00:22 +01:00
|
|
|
}
|
2018-08-11 10:50:22 +01:00
|
|
|
</tbody>
|
2019-05-18 12:00:22 +01:00
|
|
|
</table>
|