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

116 lines
3.8 KiB
Plaintext
Raw Normal View History

2020-05-24 06:10:28 +01:00
@{
/******************************************************************************
// 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/licenses"
@using Marechai.Database.Models
2020-05-24 06:10:28 +01:00
@inherits OwningComponentBase<LicensesService>
@inject IStringLocalizer<LicensesService> L
@inject Microsoft.AspNetCore.Identity.UserManager<ApplicationUser> UserManager
@inject AuthenticationStateProvider AuthenticationStateProvider
2020-05-24 06:10:28 +01:00
@attribute [Authorize(Roles = "UberAdmin, Admin")]
<h3>@L["Licenses"]</h3>
@if (_licenses is null)
{
<p>@L["Loading..."]</p>
return;
}
<p>
2020-05-28 02:44:39 +01:00
<a class="btn btn-primary" href="/admin/licenses/create">@L["Create new"]</a>
2020-05-24 06:10:28 +01:00
</p>
2020-05-27 21:37:43 +01:00
<table class="table table-striped">
2020-05-24 06:10:28 +01:00
<thead>
<tr>
<th>
@L["Name"]
</th>
<th>
@L["SPDX"]
</th>
<th>
@L["Approved by FSF"]
</th>
<th>
@L["Approved by OSI"]
</th>
<th>
@L["Link"]
</th>
<th></th>
</tr>
</thead>
<tbody>
@foreach (var item in _licenses)
{
<tr>
<td>
@item.Name
</td>
<td>
@item.SPDX
</td>
<td>
@item.FsfApproved
</td>
<td>
@item.OsiApproved
</td>
<td>
@if (item.Link != null)
{
<a href="@item.Link" target="_blank">
@L["Link"]
</a>
}
</td>
<td>
2020-05-26 01:34:45 +01:00
<a class="btn btn-primary" href="/admin/licenses/details/@item.Id">@L["Details"]</a>
2020-05-27 21:37:43 +01:00
<a class="btn btn-secondary" href="/admin/licenses/edit/@item.Id">@L["Edit"]</a>
2020-05-24 21:37:15 +01:00
<Button Color="Color.Danger" Clicked="() => {ShowModal(item.Id);}">@L["Delete"]</Button>
2020-05-24 06:10:28 +01:00
</td>
</tr>
}
</tbody>
</table>
2020-05-24 21:37:15 +01:00
<Modal @ref="_frmDelete" IsCentered="true" Closing="@ModalClosing">
<ModalBackdrop/>
<ModalContent Centered="true">
<ModalHeader>
<ModalTitle>@L["Delete license"]</ModalTitle>
<CloseButton Clicked="@HideModal"/>
</ModalHeader>
<ModalBody>
<Text>@string.Format(@L["Are you sure you want to delete {0}?"], _license?.Name)</Text>
</ModalBody>
<ModalFooter>
<Button Color="Color.Primary" Clicked="@HideModal" Disabled="@_deleteInProgress">@L["Cancel"]</Button>
<Button Color="Color.Danger" Clicked="@ConfirmDelete" Disabled="@_deleteInProgress">@L["Delete"]</Button>
</ModalFooter>
</ModalContent>
</Modal>