31 lines
564 B
Plaintext
31 lines
564 B
Plaintext
@using CORE.Data.DbModels
|
|
|
|
|
|
<div class="px-1 py-0 small border flex-fill" style="width: @widthPerc">
|
|
<div>@CurrData.Inizio</div>
|
|
<div>@CurrData.Fine</div>
|
|
</div>
|
|
|
|
|
|
@code {
|
|
[Parameter]
|
|
public RegAttivitaModel CurrData { get; set; }
|
|
|
|
|
|
[Parameter]
|
|
public int Periodo { get; set; } = 1;
|
|
|
|
private string widthPerc
|
|
{
|
|
get
|
|
{
|
|
string answ = "1%";
|
|
if (CurrData != null)
|
|
{
|
|
answ = $"{CurrData.OreTot/Periodo:P0}";
|
|
}
|
|
return answ;
|
|
}
|
|
}
|
|
}
|