mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 11:04:25 +00:00
115 lines
3.7 KiB
Plaintext
115 lines
3.7 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/companies"
|
|
@using Marechai.Database.Models
|
|
@inherits OwningComponentBase<CompaniesService>
|
|
@inject IStringLocalizer<CompaniesService> L
|
|
@inject UserManager<ApplicationUser> UserManager
|
|
@inject AuthenticationStateProvider AuthenticationStateProvider
|
|
@attribute [Authorize(Roles = "UberAdmin, Admin")]
|
|
<h3>@L["Companies"]</h3>
|
|
@if(_companies is null)
|
|
{
|
|
<p>@L["Loading..."]</p>
|
|
|
|
return;
|
|
}
|
|
<p>
|
|
<a class="btn btn-primary" href="/admin/companies/create">@L["Create new"]</a>
|
|
</p>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
@L["Name"]
|
|
</th>
|
|
<th>
|
|
@L["Founded"]
|
|
</th>
|
|
<th>
|
|
@L["Status"]
|
|
</th>
|
|
<th>
|
|
@L["Country"]
|
|
</th>
|
|
<th>
|
|
@L["Sold"]
|
|
</th>
|
|
<th>
|
|
@L["Sold to"]
|
|
</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach(var item in _companies)
|
|
{
|
|
<tr>
|
|
<td>
|
|
@item.Name
|
|
</td>
|
|
<td>
|
|
@($"{item.Founded:d}")
|
|
</td>
|
|
<td>
|
|
@item.Status
|
|
</td>
|
|
<td>
|
|
@item.Country
|
|
</td>
|
|
<td>
|
|
@item.SoldView
|
|
</td>
|
|
<td>
|
|
@item.SoldTo
|
|
</td>
|
|
<td>
|
|
<a class="btn btn-primary" href="/admin/companies/details/@item.Id">@L["Details"]</a>
|
|
<a class="btn btn-secondary" href="/admin/companies/edit/@item.Id">@L["Edit"]</a>
|
|
<Button Clicked="() => {ShowModal(item.Id);}" Color="Color.Danger">@L["Delete"]</Button>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
<Modal Closing="@ModalClosing" IsCentered="true" ref="_frmDelete">
|
|
<ModalBackdrop />
|
|
<ModalContent Centered="true">
|
|
<ModalHeader>
|
|
<ModalTitle>@L["Delete company"]</ModalTitle>
|
|
<CloseButton Clicked="@HideModal" />
|
|
</ModalHeader>
|
|
<ModalBody>
|
|
<Text>@string.Format(L["Are you sure you want to delete the company {0}?"], _currentCompany?.Name)</Text>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button Clicked="@HideModal" Color="Color.Primary" Disabled="@_deleteInProgress">@L["Cancel"]</Button>
|
|
<Button Clicked="@ConfirmDelete" Color="Color.Danger" Disabled="@_deleteInProgress">@L["Delete"]</Button>
|
|
</ModalFooter>
|
|
</ModalContent>
|
|
</Modal> |