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