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.
41 righe
1.3 KiB
41 righe
1.3 KiB
<? |
|
if (isset($criterio)) { |
|
?> |
|
<div style="text-align:center"> |
|
<label><?= __("Si") ?></label> |
|
[ <?= ($values["_0"][0] == "true") ? "X" : " " ?> ] |
|
|
|
<label><?= __("No") ?></label> |
|
[ <?= ($values["_0"][0] == "false") ? "X" : " " ?> ] |
|
</div><br> |
|
<table width="100%"> |
|
<tr> |
|
<th style="<?= $styles["th"] ?>"> |
|
<?= __("Queste informazioni sono disponibili elettronicamente?") ?> |
|
</th> |
|
<td> |
|
<label><?= __("Si") ?></label> |
|
[ <?= ($values["_1"][0] == "true") ? "X" : " " ?> ] |
|
|
|
<label><?= __("No") ?></label> |
|
[ <?= ($values["_1"][0] == "false") ? "X" : " " ?> ] |
|
</td> |
|
</tr> |
|
<? if ($values["_1"][0] == "true" || $show_empty) { ?> |
|
<tr> |
|
<th style="<?= $styles["th"] ?>"><?= __("URL") ?></th> |
|
<th style="<?= $styles["th"] ?>"><?= __("Codice") ?></th> |
|
</tr> |
|
<tr> |
|
<td> |
|
<a href="<?= $values["_1"][1]; ?>" target="_blank" title="Sito esterno"><?= $values["_1"][1]; ?></a> |
|
</td> |
|
<td> |
|
<?= $values["_1"][2]; ?> |
|
</td> |
|
</tr> |
|
<? } ?> |
|
</table> |
|
<? |
|
} |
|
?>
|
|
|