Files
marechai/Marechai/Pages/Admin/Gpus.razor

107 lines
2.9 KiB
Plaintext
Raw Normal View History

2020-05-24 05:42:38 +01:00
@{
/******************************************************************************
2020-02-10 01:52:56 +00:00
// MARECHAI: Master repository of computing history artifacts information
// ----------------------------------------------------------------------------
//
2020-05-24 05:42:38 +01:00
// Filename : DocumentPeople.razor
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// --[ Description ] ----------------------------------------------------------
//
2020-05-24 05:42:38 +01:00
// List of graphics processing units
//
// --[ 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-05-24 05:42:38 +01:00
@page "/admin/gpus"
@inherits OwningComponentBase<GpusService>
@inject IStringLocalizer<GpusService> L
@attribute [Authorize(Roles = "UberAdmin, Admin")]
<h3>@L["Graphics Processing Units"]</h3>
@if (_gpus is null)
{
<p>@L["Loading..."]</p>
return;
}
<p>
2020-05-24 05:42:38 +01:00
<span class="btn btn-primary">
@L["Create New"]
</span>
</p>
<table class="table">
<thead>
<tr>
2019-05-18 19:47:05 +01:00
<th>
2020-05-24 05:42:38 +01:00
@L["Company"]
2019-05-18 19:47:05 +01:00
</th>
<th>
2020-05-24 05:42:38 +01:00
@L["Name"]
</th>
<th>
2020-05-24 05:42:38 +01:00
@L["Model code"]
</th>
<th>
2020-05-24 05:42:38 +01:00
@L["Introduced"]
</th>
<th></th>
</tr>
</thead>
<tbody>
2020-05-24 05:42:38 +01:00
@foreach (var item in _gpus)
{
<tr>
2019-05-18 19:47:05 +01:00
<td>
2020-05-24 05:42:38 +01:00
@item.Company
2019-05-18 19:47:05 +01:00
</td>
<td>
2020-05-24 05:42:38 +01:00
@item.Name
</td>
<td>
2020-05-24 05:42:38 +01:00
@item.ModelCode
</td>
<td>
2020-05-24 05:42:38 +01:00
@item.IntroducedView
</td>
<td>
2020-05-24 05:42:38 +01:00
<span class="btn btn-primary">
@L["Details"]
</span>
<span class="btn btn-secondary">
@L["Edit"]
</span>
<span class="btn btn-danger">
@L["Delete"]
</span>
</td>
</tr>
}
</tbody>
2020-05-24 05:42:38 +01:00
</table>
@code
{
List<GpuViewModel> _gpus;
protected override async Task OnInitializedAsync()
{
_gpus = await Service.GetAsync();
}
}