36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
<div class="card shadow">
|
|
<div class="card-header">
|
|
<b>Dettaglio Versioni</b>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="d-flex justify-content-between p-2">
|
|
<div class="px-0">
|
|
<Doughnut Id="RelVers" Type="@Doughnut.ChartType.Doughnut" Data="@ChartData" Labels="ChartLabels" BackgroundColor="@ChartColor" BordWidth="1"></Doughnut>
|
|
</div>
|
|
<div class="px-0 w-75">
|
|
<div class="text-end">Vers. Corrente: <b>@CurrRecord.VersNumCurrent</b></div>
|
|
<table class="table table-sm table-striped table-responsive-lg">
|
|
<thead>
|
|
<tr>
|
|
<th>Cliente</th>
|
|
<th>PC</th>
|
|
<th># Licenze</th>
|
|
<th class="text-end">Versione</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var record in ListRecord)
|
|
{
|
|
<tr>
|
|
<td>@record.Cliente</td>
|
|
<td>@record.PcInst</td>
|
|
<td>@record.NumImp</td>
|
|
<td class="text-end @cssVers(record)">@record.VersNumInstall</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |