mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-25 17:04:25 +01:00
19 lines
489 B
Plaintext
19 lines
489 B
Plaintext
@model BTCPayServer.Models.AppViewModels.ViewPointOfSaleViewModel
|
|
@{
|
|
Layout = "_LayoutPos";
|
|
}
|
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
@if (Context.Request.Query.ContainsKey("simple"))
|
|
{
|
|
<partial name="/Views/AppsPublic/PointOfSale/MinimalLight.cshtml" model="Model" />
|
|
}
|
|
else
|
|
{
|
|
<noscript>
|
|
<partial name="/Views/AppsPublic/PointOfSale/MinimalLight.cshtml" model="Model" />
|
|
</noscript>
|
|
<partial name="/Views/AppsPublic/PointOfSale/VueLight.cshtml" model="Model" />
|
|
}
|