Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
57 righe
1.5 KiB
57 righe
1.5 KiB
<? |
|
if (!empty($criteri)) { |
|
?> |
|
<div class="table-responsive"> |
|
<table class="table table-bordered table-condensed"> |
|
<thead> |
|
<tr> |
|
<th><?= __("Criterio") ?></th> |
|
<th><?= __("Peso") ?></th> |
|
<th><?= __("Soglia") ?></th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<? |
|
foreach($criteri AS $criterio) { |
|
$subs = $this->getSubCriteri($criterio["codice"]); |
|
?> |
|
<tr> |
|
<th class="bg-light"> |
|
<strong><?= $criterio["denominazione"] ?></strong><br> |
|
<?= $criterio["descrizione"] ?> |
|
</th> |
|
<th class="bg-light"> |
|
<?= $criterio["peso"] ?> |
|
</th> |
|
<th class="bg-light"> |
|
<?= $criterio["soglia"] ?> |
|
</th> |
|
</tr> |
|
<? |
|
if (!empty($subs)) { |
|
foreach($subs AS $sub) { |
|
?> |
|
<tr> |
|
<td></td> |
|
<td> |
|
<strong><?= $sub["denominazione"] ?></strong><br> |
|
<?= $sub["descrizione"] ?> |
|
</td> |
|
<td> |
|
<?= $sub["peso"] ?> |
|
</td> |
|
<td> |
|
<?= $sub["soglia"] ?> |
|
</td> |
|
</tr> |
|
<? |
|
} |
|
} |
|
} |
|
?> |
|
</tbody> |
|
</table> |
|
</div> |
|
<? |
|
} |
|
?>
|