btcpayserver/BTCPayServer/Views/Stores/_LayoutWalletSetup.cshtml
d11n 2d4aa52fa5
Restructure store and payment settings (#2995)
Co-authored-by: Kukks <evilkukka@gmail.com>
2021-10-29 08:25:43 +02:00

24 lines
469 B
Plaintext

@{
Layout = "_LayoutWizard";
}
@section PageHeadContent {
@await RenderSectionAsync("PageHeadContent", false)
}
@section PageFootContent {
@await RenderSectionAsync("PageFootContent", false)
}
@section Navbar {
@await RenderSectionAsync("Navbar", false)
<a asp-controller="Stores" asp-action="PaymentMethods" asp-route-storeId="@Context.GetRouteValue("storeId")" class="cancel">
<vc:icon symbol="close" />
</a>
}
@RenderBody()