Files
marechai/Marechai/Areas/Admin/Views/MachineFamilies/Index.cshtml

79 lines
2.6 KiB
Plaintext
Raw Normal View History

@{
/******************************************************************************
2020-02-10 01:52:56 +00:00
// MARECHAI: Master repository of computing history artifacts information
// ----------------------------------------------------------------------------
//
// 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/>.
//
// ----------------------------------------------------------------------------
2020-02-10 03:05:39 +00:00
// Copyright © 2003-2020 Natalia Portillo
*******************************************************************************/
}
2020-02-10 02:20:48 +00:00
@model IEnumerable<Marechai.Areas.Admin.Models.MachineFamilyViewModel>
@{
2019-05-18 12:04:41 +01:00
ViewData["Title"] = "Machine families (Admin)";
}
2019-05-18 12:04:41 +01:00
<h2>Machine families</h2>
<p>
2020-02-10 22:44:18 +00:00
<a asp-action="Create" class="btn btn-primary">
Create new
</a>
</p>
<table class="table">
<thead>
<tr>
<th>
2019-05-18 21:00:07 +01:00
@Html.DisplayNameFor(model => model.Company)
</th>
<th>
2019-05-18 21:00:07 +01:00
@Html.DisplayNameFor(model => model.Name)
</th>
<th></th>
</tr>
</thead>
<tbody>
2020-02-10 22:44:18 +00:00
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Company)
</td>
<td>
2019-05-18 21:00:07 +01:00
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
2020-02-10 22:44:18 +00:00
<a asp-action="Details" asp-route-id="@item.Id" class="btn btn-primary">
Details
</a>
2020-02-10 22:44:18 +00:00
<a asp-action="Edit" asp-route-id="@item.Id" class="btn btn-secondary">
Edit
</a>
2020-02-10 22:44:18 +00:00
<a asp-action="Delete" asp-route-id="@item.Id" class="btn btn-danger">
Delete
</a>
</td>
</tr>
}
</tbody>
</table>