mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
18 lines
495 B
Text
18 lines
495 B
Text
@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" />
|
|
}
|