mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* Newlines * Dashboard * Add more translations * Moar * Remove from translated texts * Dictionary controller translations * Batch 1 of controller updates * Batch 2 of controller updates * Component translations * Batch 3 of controller updates * Fixes
22 lines
409 B
Text
22 lines
409 B
Text
@model CheatPermissionsViewModel
|
|
|
|
@{
|
|
ViewData["Title"] = ViewLocalizer["Permissions"];
|
|
Layout = "_LayoutSignedOut";
|
|
}
|
|
|
|
@if (Model.StoreId is not null)
|
|
{
|
|
<h1 text-translate="true">@ViewLocalizer["Store: {0}", Model.StoreId]</h1>
|
|
}
|
|
else
|
|
{
|
|
<h1 text-translate="true" text-translate="true">No scope</h1>
|
|
}
|
|
|
|
<ul>
|
|
@foreach (var p in Model.Permissions.Where(o => o.Result.Succeeded))
|
|
{
|
|
<li>@p.Item1</li>
|
|
}
|
|
</ul>
|