2020-05-25 23:05:33 +01:00
|
|
|
@{
|
|
|
|
|
/******************************************************************************
|
2020-02-10 01:52:56 +00:00
|
|
|
// MARECHAI: Master repository of computing history artifacts information
|
2018-08-11 10:50:22 +01:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : Details.cshtml
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Admin view details
|
|
|
|
|
//
|
|
|
|
|
// --[ 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
|
2018-08-11 10:50:22 +01:00
|
|
|
*******************************************************************************/
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-25 23:05:33 +01:00
|
|
|
@page "/admin/instruction_set_extensions/details/{Id:int}"
|
|
|
|
|
@inherits OwningComponentBase<InstructionSetExtensionsService>
|
|
|
|
|
@inject IStringLocalizer<InstructionSetExtensionsService> L
|
|
|
|
|
@attribute [Authorize(Roles = "UberAdmin, Admin")]
|
|
|
|
|
<h3>@L["Instruction set extension details"]</h3>
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
|
|
@if (!_loaded)
|
|
|
|
|
{
|
|
|
|
|
<p align="center">@L["Loading..."]</p>
|
|
|
|
|
|
|
|
|
|
return;
|
2018-08-11 10:50:22 +01:00
|
|
|
}
|
2020-05-25 23:05:33 +01:00
|
|
|
|
2018-08-11 10:50:22 +01:00
|
|
|
<div>
|
2020-05-25 23:05:33 +01:00
|
|
|
<Field>
|
|
|
|
|
<FieldLabel>@L["Extension"]</FieldLabel>
|
|
|
|
|
<TextEdit ReadOnly="!_editable" @bind-Text="@_model.Extension"/>
|
|
|
|
|
</Field>
|
2018-08-11 10:50:22 +01:00
|
|
|
</div>
|
|
|
|
|
<div>
|
2020-05-25 23:05:33 +01:00
|
|
|
<span class="btn btn-primary">@L["Edit"]</span>
|
|
|
|
|
<a href="/admin/companies" class="btn btn-secondary">@L["Back to list"]</a>
|
2019-05-19 23:10:19 +01:00
|
|
|
</div>
|