mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Add enabled toggle to wallet settings view * Add enabled toggle to Lightning settings view * Remove redundant payment methods from store settings * Rename Payment Methods to Payments * Adapt tests * Fix invoice state toggle on details page * Add spacing on Lightning sett8ings page
23 lines
464 B
Text
23 lines
464 B
Text
@{
|
|
Layout = "_LayoutWizard";
|
|
}
|
|
|
|
@section PageHeadContent {
|
|
@await RenderSectionAsync("PageHeadContent", false)
|
|
}
|
|
|
|
@section PageFootContent {
|
|
@await RenderSectionAsync("PageFootContent", false)
|
|
}
|
|
|
|
@section Navbar {
|
|
@await RenderSectionAsync("Navbar", false)
|
|
|
|
<a asp-controller="UIStores" asp-action="Payment" asp-route-storeId="@Context.GetRouteValue("storeId")" class="cancel">
|
|
<vc:icon symbol="close" />
|
|
</a>
|
|
}
|
|
|
|
@RenderBody()
|
|
|
|
|