mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 11:04:25 +00:00
83 lines
3.2 KiB
Plaintext
83 lines
3.2 KiB
Plaintext
@{
|
|
/******************************************************************************
|
|
// MARECHAI: Master repository of computing history artifacts information
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// --[ 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
|
|
*******************************************************************************/
|
|
}
|
|
|
|
@page "/admin/machine_families/details/{Id:int}"
|
|
@page "/admin/machine_families/edit/{Id:int}"
|
|
@page "/admin/machine_families/create"
|
|
@using Marechai.Database.Models
|
|
@inherits OwningComponentBase<MachineFamiliesService>
|
|
@inject IStringLocalizer<MachineFamiliesService> L
|
|
@inject CompaniesService CompaniesService
|
|
@inject NavigationManager NavigationManager
|
|
@inject UserManager<ApplicationUser> UserManager
|
|
@inject AuthenticationStateProvider AuthenticationStateProvider
|
|
@attribute [Authorize(Roles = "UberAdmin, Admin")]
|
|
<h3>@L["Machine family details"]</h3>
|
|
<hr />
|
|
@if(!_loaded)
|
|
{
|
|
<p align="center">@L["Loading..."]</p>
|
|
|
|
return;
|
|
}
|
|
<div>
|
|
<Field>
|
|
<FieldLabel>@L["Company"]</FieldLabel>
|
|
<Select @bind-SelectedValue="@_model.CompanyId" Disabled="!_editing" @TValue="int">
|
|
@foreach(var company in _companies)
|
|
{
|
|
<SelectItem @TValue="int" Value="@company.Id">@company.Name</SelectItem>
|
|
}
|
|
</Select>
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel>@L["Name"]</FieldLabel>
|
|
<Validation Validator="@ValidateName">
|
|
<TextEdit @bind-Text="@_model.Name" Disabled="!_editing">
|
|
<Feedback>
|
|
<ValidationError>@L["Please enter a valid name."]</ValidationError>
|
|
</Feedback>
|
|
</TextEdit>
|
|
</Validation>
|
|
@if(_editing)
|
|
{
|
|
<FieldHelp>@L["Must not contain \"family\" or \"series\". Different regional names should be separated with /. Different numbers should be separated with comma."]</FieldHelp>
|
|
}
|
|
</Field>
|
|
</div>
|
|
<div>
|
|
@if(!_editing)
|
|
{
|
|
<Button Clicked="@OnEditClicked" Color="Color.Primary">@L["Edit"]</Button>
|
|
}
|
|
else
|
|
{
|
|
<Button Clicked="@OnSaveClicked" Color="Color.Success">@L["Save"]</Button>
|
|
<Button Clicked="@OnCancelClicked" Color="Color.Danger">@L["Cancel"]</Button>
|
|
}
|
|
<a class="btn btn-secondary" href="/admin/machine_families">@L["Back to list"]</a>
|
|
</div> |