btcpayserver/BTCPayServer/Views/UIAccount/CheatPermissions.cshtml
d11n 77fba4aee3
Add more translations (#6302)
* 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
2024-10-17 22:51:40 +09:00

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>