46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
@page "/"
|
|
@page "/Home"
|
|
@page "/Index"
|
|
@page "/Nav01"
|
|
|
|
|
|
@if (ReqSetup)
|
|
{
|
|
<TargetSetup EC_GotoSetup="SetupMode"></TargetSetup>
|
|
}
|
|
else
|
|
{
|
|
<div class="card shadow">
|
|
<div class="card-header">
|
|
<div class="d-flex justify-content-between">
|
|
<div class="p-0">
|
|
<h5>App Control Center</h5>
|
|
@if (!ReqSetup)
|
|
{
|
|
}
|
|
</div>
|
|
<div class="p-0 d-flex">
|
|
@if (!ReqSetup)
|
|
{
|
|
<div class="px-1 input-group">
|
|
<span class="input-group-text">
|
|
<span class="form-check form-switch">
|
|
<label class="form-check-label">@ShowUpdateText</label>
|
|
<input class="form-check-input" type="checkbox" @bind="@ShowOnlyUpdate">
|
|
</span>
|
|
</span>
|
|
<button class="btn btn-outline-success" @onclick="ForceCheck" title="Forza Verifica Immediata">Check Now <i class="fa-solid fa-rotate"></i></button>
|
|
</div>
|
|
}
|
|
<div class="px-1">
|
|
<button class="btn @SetupBtnClass w-100" @onclick="ToggleSetup" title="Setup Controlli"><i class="fa-solid fa-angles-left"></i></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body px-2">
|
|
<ApplicationCheck OnlyUpdate="@ShowOnlyUpdate"></ApplicationCheck>
|
|
</div>
|
|
</div>
|
|
}
|