38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
@using GWMS.UI.Components
|
|
|
|
@if (currRecord == null)
|
|
{
|
|
<LoadingData></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<div class="form-row">
|
|
<div class="col-2">
|
|
<div class="input-group input-group-sm">
|
|
<div class="input-group-prepend">
|
|
</div>
|
|
<div class="custom-control custom-switch">
|
|
<input type="checkbox" class="custom-control-input" id="togSend" title="Abilitato" @bind-value="@IsEnabled" checked="@IsEnabled" />
|
|
<label class="custom-control-label small" for="togSend"><sub>Invio Abilitato</sub></label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-4">
|
|
<div class="input-group input-group-sm text-right">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">Periodo Invio</span>
|
|
</div>
|
|
<input type="text" class="form-control" title="Inizio Periodo Invio" @bind-value="@SendWindStart">
|
|
<input type="text" class="form-control" title="Fine Periodo Invio" @bind-value="@SendWindEnd">
|
|
</div>
|
|
</div>
|
|
<div class="col-6 small text-right">
|
|
<div>
|
|
Ultimo Invio: <span>@currRecord.LastSend.ToString("yyyy.MM.dd HH:mm.ss")</span>
|
|
</div>
|
|
<div>
|
|
Invio Previsto: <span>@currRecord.VetoSend.ToString("yyyy.MM.dd HH:mm.ss")</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
} |