mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-27 01:44:31 +01:00
19 lines
460 B
Plaintext
19 lines
460 B
Plaintext
@model BTCPayServer.Plugins.PointOfSale.Models.ViewPointOfSaleViewModel
|
|
@{
|
|
Layout = "PointOfSale/Public/_LayoutPos";
|
|
}
|
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
@if (Context.Request.Query.ContainsKey("simple"))
|
|
{
|
|
<partial name="PointOfSale/Public/MinimalLight" model="Model" />
|
|
}
|
|
else
|
|
{
|
|
<noscript>
|
|
<partial name="PointOfSale/Public/MinimalLight" model="Model" />
|
|
</noscript>
|
|
<partial name="PointOfSale/Public/VueLight" model="Model" />
|
|
}
|