mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
105 lines
3.3 KiB
Plaintext
105 lines
3.3 KiB
Plaintext
@{
|
|
/******************************************************************************
|
|
// MARECHAI: Master repository of computing history artifacts information
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : Delete.cshtml
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// --[ Description ] ----------------------------------------------------------
|
|
//
|
|
// Admin view delete
|
|
//
|
|
// --[ 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-2020 Natalia Portillo
|
|
*******************************************************************************/
|
|
}
|
|
@model Marechai.Database.Models.Gpu
|
|
|
|
@{
|
|
ViewData["Title"] = "Delete";
|
|
}
|
|
<h2>Delete</h2>
|
|
<h3>Are you sure you want to delete this?</h3>
|
|
<div>
|
|
<h4>GPU</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Company)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Company.Name)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Name)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Name)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.ModelCode)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.ModelCode)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Introduced)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.IntroducedView)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Package)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Package)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Process)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Process)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.ProcessNm)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.ProcessNm)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.DieSize)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.DieSize)
|
|
</dd>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Transistors)
|
|
</dt>
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Transistors)
|
|
</dd>
|
|
</dl>
|
|
<form asp-action="Delete">
|
|
<input type="hidden" asp-for="Id" />
|
|
<input class="btn btn-danger" type="submit" value="Delete" />
|
|
<a asp-action="Index" class="btn btn-secondary">
|
|
Back to List
|
|
</a>
|
|
</form>
|
|
</div> |